-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
28 lines (25 loc) · 1.15 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Stage 1 - compile
FROM node:12-alpine AS compile
WORKDIR /opt/web/app
COPY . .
RUN npm i && npm rebuild node-sass && npm run build
# Stage 2 - production install
FROM node:12-alpine AS prod-install
WORKDIR /opt/web/app
COPY --from=compile /opt/web/app/package.json /opt/web/app/package-lock.json ./
RUN npm i --only=production
# Stage 3 - package files
FROM node:12-alpine AS package
WORKDIR /opt/web/app
COPY --from=compile /opt/web/app/config/default.js ./config/
COPY --from=compile /opt/web/app/config/custom-environment-variables.json ./config/
COPY --from=compile /opt/web/app/src ./src
COPY --from=compile /opt/web/app/public ./public
COPY --from=compile /opt/web/app/package.json ./
COPY --from=compile /opt/web/app/package-lock.json ./
COPY --from=prod-install /opt/web/app/node_modules ./node_modules
FROM node:12-alpine AS deploy
WORKDIR /opt/web/app
COPY --from=package /opt/web/app/ ./
EXPOSE 8080
CMD ["node", "src/app"]