1
mirror of https://github.com/xitanggg/open-resume synced 2024-11-03 09:19:21 +01:00
open-resume/Dockerfile

14 lines
321 B
Docker
Raw Normal View History

FROM node:18-alpine as builder
2023-06-26 10:37:33 +02:00
WORKDIR /app
COPY . .
RUN npm install --include=dev
2023-06-26 10:37:33 +02:00
RUN npm run build
FROM node:18-alpine AS runner
WORKDIR /app
COPY --from=builder /app/.next/standalone .
2023-06-26 10:37:33 +02:00
COPY --from=builder /app/public ./public
COPY --from=builder /app/.next/static ./.next/static
2023-06-26 10:37:33 +02:00
EXPOSE 3000
CMD ["node", "server.js"]