Fix docker builds
This commit is contained in:
parent
c901c2ba6a
commit
1472f42389
2 changed files with 25 additions and 0 deletions
|
@ -1,10 +1,22 @@
|
||||||
FROM node:18 as build
|
FROM node:18 as build
|
||||||
WORKDIR /build/app
|
WORKDIR /build/app
|
||||||
|
|
||||||
COPY bot/package.json bot/yarn.lock bot/.yarnrc.yml ./
|
COPY bot/package.json bot/yarn.lock bot/.yarnrc.yml ./
|
||||||
COPY bot/.yarn ./.yarn
|
COPY bot/.yarn ./.yarn
|
||||||
COPY lib ../lib
|
COPY lib ../lib
|
||||||
|
COPY revolt.js ../revolt.js
|
||||||
|
|
||||||
RUN yarn --cwd ../lib --immutable
|
RUN yarn --cwd ../lib --immutable
|
||||||
RUN yarn --cwd ../lib build
|
RUN yarn --cwd ../lib build
|
||||||
|
|
||||||
|
# pnpm's --dir doesn't work, so cool!
|
||||||
|
WORKDIR /build/revolt.js
|
||||||
|
RUN corepack enable
|
||||||
|
RUN corepack prepare pnpm@7.14.2 --activate
|
||||||
|
RUN pnpm install
|
||||||
|
RUN pnpm run build
|
||||||
|
|
||||||
|
WORKDIR /build/app
|
||||||
RUN yarn install --immutable
|
RUN yarn install --immutable
|
||||||
COPY ./bot .
|
COPY ./bot .
|
||||||
RUN yarn build
|
RUN yarn build
|
||||||
|
@ -15,5 +27,6 @@ COPY --from=build /build/app/package.json /build/app/yarn.lock /build/app/.yarnr
|
||||||
COPY --from=build /build/app/.yarn ./.yarn
|
COPY --from=build /build/app/.yarn ./.yarn
|
||||||
COPY --from=build /build/app/dist ./dist
|
COPY --from=build /build/app/dist ./dist
|
||||||
COPY --from=build /build/lib ../lib
|
COPY --from=build /build/lib ../lib
|
||||||
|
COPY --from=build /build/revolt.js ../revolt.js
|
||||||
RUN yarn install --immutable
|
RUN yarn install --immutable
|
||||||
CMD ["yarn", "start"]
|
CMD ["yarn", "start"]
|
||||||
|
|
|
@ -1,10 +1,21 @@
|
||||||
FROM node:18 as build
|
FROM node:18 as build
|
||||||
WORKDIR /build/app
|
WORKDIR /build/app
|
||||||
|
|
||||||
COPY bridge/package.json bridge/yarn.lock bridge/.yarnrc.yml ./
|
COPY bridge/package.json bridge/yarn.lock bridge/.yarnrc.yml ./
|
||||||
COPY bridge/.yarn ./.yarn
|
COPY bridge/.yarn ./.yarn
|
||||||
COPY lib ../lib
|
COPY lib ../lib
|
||||||
|
COPY revolt.js ../revolt.js
|
||||||
|
|
||||||
RUN yarn --cwd ../lib --immutable
|
RUN yarn --cwd ../lib --immutable
|
||||||
RUN yarn --cwd ../lib build
|
RUN yarn --cwd ../lib build
|
||||||
|
|
||||||
|
WORKDIR /build/revolt.js
|
||||||
|
RUN corepack enable
|
||||||
|
RUN corepack prepare pnpm@7.14.2 --activate
|
||||||
|
RUN pnpm install
|
||||||
|
RUN pnpm run build
|
||||||
|
|
||||||
|
WORKDIR /build/app
|
||||||
RUN yarn install --immutable
|
RUN yarn install --immutable
|
||||||
COPY ./bridge .
|
COPY ./bridge .
|
||||||
RUN yarn build
|
RUN yarn build
|
||||||
|
@ -15,5 +26,6 @@ COPY --from=build /build/app/package.json /build/app/yarn.lock /build/app/.yarnr
|
||||||
COPY --from=build /build/app/.yarn ./.yarn
|
COPY --from=build /build/app/.yarn ./.yarn
|
||||||
COPY --from=build /build/app/dist ./dist
|
COPY --from=build /build/app/dist ./dist
|
||||||
COPY --from=build /build/lib ../lib
|
COPY --from=build /build/lib ../lib
|
||||||
|
COPY --from=build /build/revolt.js ../revolt.js
|
||||||
RUN yarn install --immutable
|
RUN yarn install --immutable
|
||||||
CMD ["yarn", "start"]
|
CMD ["yarn", "start"]
|
||||||
|
|
Loading…
Reference in a new issue