mirror of https://github.com/kern/filepizza
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
565 B
Docker
25 lines
565 B
Docker
FROM node:alpine as builder
|
|
LABEL maintainer="Alexander Kern <filepizza@kern.io>"
|
|
|
|
WORKDIR /root/filepizza
|
|
|
|
COPY . ./
|
|
|
|
# copy production node_modules aside
|
|
RUN npm ci --only=production
|
|
RUN cp -R node_modules prod_node_modules
|
|
|
|
RUN npm install && npm run build
|
|
|
|
FROM node:alpine
|
|
LABEL maintainer="Alexander Kern <filepizza@kern.io>"
|
|
WORKDIR /root/filepizza
|
|
|
|
# copy production files
|
|
COPY --from=builder /root/filepizza/prod_node_modules ./node_modules
|
|
COPY --from=builder /root/filepizza/dist ./dist
|
|
|
|
ENV NODE_ENV production
|
|
EXPOSE 80
|
|
ENTRYPOINT node ./dist/index.js
|