keyoxide-web/Dockerfile
2023-09-14 11:04:31 +02:00

23 lines
No EOL
430 B
Docker

FROM node:20-alpine as builder
WORKDIR /app
COPY . .
RUN yarn --pure-lockfile
RUN yarn run build:server
RUN yarn run build:static
###
FROM node:20-alpine
WORKDIR /app
COPY --from=builder /app/package.json /app/package.json
COPY --from=builder /app/dist /app/dist
COPY --from=builder /app/content /app/content
COPY --from=builder /app/views /app/views
COPY --from=builder /app/static /app/static
EXPOSE 3000
CMD node ./dist/