firefish/Dockerfile

52 lines
1.7 KiB
Docker
Raw Normal View History

## Install dev and compilation dependencies, build files
FROM node:19-alpine as build
2022-08-23 07:11:29 +02:00
WORKDIR /calckey
# Install compilation dependencies
RUN apk add --no-cache --no-progress git alpine-sdk python3
# Copy only the dependency-related files first, to cache efficiently
COPY package.json pnpm*.yaml ./
COPY packages/backend/package.json packages/backend/package.json
COPY packages/client/package.json packages/client/package.json
COPY packages/sw/package.json packages/sw/package.json
2022-08-08 05:32:59 +02:00
# Configure corepack and pnpm
2023-01-13 05:54:33 +01:00
RUN corepack enable
RUN corepack prepare pnpm@latest --activate
# Install dev mode dependencies for compilation
RUN pnpm i --frozen-lockfile
2022-08-08 05:32:59 +02:00
# Copy in the rest of the files, to compile from TS to JS
COPY . ./
RUN pnpm run build
# Trim down the dependencies to only the prod deps
RUN pnpm i --prod --frozen-lockfile
## Runtime container
FROM node:19-alpine
WORKDIR /calckey
# Install runtime dependencies
RUN apk add --no-cache --no-progress tini ffmpeg
COPY . ./
# Copy node modules
COPY --from=build /calckey/node_modules /calckey/node_modules
COPY --from=build /calckey/packages/backend/node_modules /calckey/packages/backend/node_modules
COPY --from=build /calckey/packages/sw/node_modules /calckey/packages/sw/node_modules
COPY --from=build /calckey/packages/client/node_modules /calckey/packages/client/node_modules
# Copy the finished compiled files
COPY --from=build /calckey/built /calckey/built
COPY --from=build /calckey/packages/backend/built /calckey/packages/backend/built
COPY --from=build /calckey/packages/backend/assets/instance.css /calckey/packages/backend/assets/instance.css
RUN corepack enable
2022-08-08 05:32:59 +02:00
ENTRYPOINT [ "/sbin/tini", "--" ]
CMD [ "pnpm", "run", "migrateandstart" ]