-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
64 lines (39 loc) · 1.82 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# ################################################################
# ### Base image ###
# ################################################################
FROM node:alpine as base
WORKDIR /opt
COPY . .
ARG NODE_ENV=production
ENV NODE_ENV ${NODE_ENV}
# ################################################################
# ### development image ###
# ################################################################
FROM base as development
WORKDIR /opt/backend
RUN npm install --quiet --unsafe-perm --no-progress --no-audit --include=dev
CMD npm run run:dev
# ################################################################
# ### backend build image ###
# ################################################################
FROM base as backendbuild
WORKDIR /opt/backend
RUN npm install --quiet --unsafe-perm --no-progress --no-audit --include=dev
RUN npx tsc -p ./tsconfig.json
# ################################################################
# ### frontend build image ###
# ################################################################
FROM base as frontendbuild
WORKDIR /opt/frontend
RUN npm i --include=dev
ENV PATH /opt/frontend/node_modules:$PATH
RUN npm run build
# ################################################################
# ### production image ###
# ################################################################
FROM base as production
COPY --from=frontendbuild --chown=node:node /opt/frontend/build /opt/frontend/build
COPY --from=backendbuild --chown=node:node /opt/backend/dist/ /opt/backend/dist/
WORKDIR /opt/backend
RUN npm install --quiet --unsafe-perm --no-progress --no-audit --omit=dev
CMD npm run run:prod