Files
site-profile/Dockerfile
2024-08-19 16:10:41 -05:00

12 lines
171 B
Docker

FROM 20.16.0-alpine3.20 AS runtime
WORKDIR /app
COPY . .
RUN pnpm install
RUN pnpm run build
ENV HOST=0.0.0.0
ENV PORT=4321
EXPOSE 4321
CMD node ./dist/server/entry.mjs