containerfile -> dockerfile
This commit is contained in:
parent
40a9263083
commit
5aaef3f5b6
1 changed files with 0 additions and 0 deletions
57
Dockerfile
Normal file
57
Dockerfile
Normal file
|
@ -0,0 +1,57 @@
|
|||
# syntax = docker/dockerfile:1.4
|
||||
|
||||
ARG NODE_VERSION=21.4.0-alpine3.18
|
||||
|
||||
FROM node:${NODE_VERSION} as build
|
||||
|
||||
RUN corepack enable
|
||||
|
||||
WORKDIR /outpatient
|
||||
|
||||
RUN apk add git
|
||||
|
||||
COPY . ./
|
||||
|
||||
RUN git submodule update
|
||||
RUN pnpm config set fetch-retries 5
|
||||
RUN --mount=type=cache,target=/root/.local/share/pnpm/store,sharing=locked \
|
||||
pnpm i
|
||||
RUN pnpm build
|
||||
RUN node scripts/trim-deps.mjs
|
||||
RUN mv packages/frontend/assets sharkey-assets
|
||||
RUN rm -r node_modules packages/frontend packages/sw
|
||||
RUN --mount=type=cache,target=/root/.local/share/pnpm/store,sharing=locked \
|
||||
pnpm i --prod
|
||||
RUN rm -rf .git
|
||||
|
||||
FROM node:${NODE_VERSION}
|
||||
|
||||
WORKDIR /outpatient
|
||||
|
||||
RUN apk add ffmpeg tini
|
||||
|
||||
COPY --from=build /outpatient/built ./built
|
||||
COPY --from=build /outpatient/node_modules ./node_modules
|
||||
COPY --from=build /outpatient/packages/backend/built ./packages/backend/built
|
||||
COPY --from=build /outpatient/packages/backend/node_modules ./packages/backend/node_modules
|
||||
COPY --from=build /outpatient/packages/megalodon/lib ./packages/megalodon/lib
|
||||
COPY --from=build /outpatient/packages/megalodon/node_modules ./packages/megalodon/node_modules
|
||||
COPY --from=build /outpatient/packages/misskey-js/built ./packages/misskey-js/built
|
||||
COPY --from=build /outpatient/packages/misskey-js/node_modules ./packages/misskey-js/node_modules
|
||||
COPY --from=build /outpatient/fluent-emojis ./fluent-emojis
|
||||
COPY --from=build /outpatient/sharkey-assets ./packages/frontend/assets
|
||||
|
||||
COPY package.json ./package.json
|
||||
COPY pnpm-workspace.yaml ./pnpm-workspace.yaml
|
||||
COPY packages/backend/package.json ./packages/backend/package.json
|
||||
COPY packages/backend/check_connect.js ./packages/backend/check_connect.js
|
||||
COPY packages/backend/ormconfig.js ./packages/backend/ormconfig.js
|
||||
COPY packages/backend/migration ./packages/backend/migration
|
||||
COPY packages/backend/assets ./packages/backend/assets
|
||||
COPY packages/megalodon/package.json ./packages/megalodon/package.json
|
||||
COPY packages/misskey-js/package.json ./packages/misskey-js/package.json
|
||||
|
||||
ENV NODE_ENV=production
|
||||
RUN corepack enable
|
||||
ENTRYPOINT ["/usr/bin/tini", "--"]
|
||||
CMD ["pnpm", "run", "migrateandstart"]
|
Loading…
Add table
Add a link
Reference in a new issue