Prepare Dockerfile, still missing Nginx into the image.

This commit is contained in:
2025-03-26 23:08:55 +01:00
parent e994430d28
commit 0d4c71926d
4 changed files with 154 additions and 13 deletions

21
Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
FROM node:23-slim AS base
LABEL Author="eisterman"
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN corepack enable
COPY . /app
WORKDIR /app
FROM base AS prod-deps
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile
FROM base AS build
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
RUN pnpm run build
FROM base
COPY --from=prod-deps /app/node_modules /app/node_modules
COPY --from=build /app/build /app/build
EXPOSE 3000
ENTRYPOINT ["node", "build"]