forked from bram-rongen/coronames
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
40 lines (27 loc) · 813 Bytes
/
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
FROM node:13.10-alpine as frontend
WORKDIR /usr/src
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY frontend/package*.json ./
# RUN npm install
# If you are building your code for production
RUN npm ci
# Bundle app source
COPY frontend/ .
RUN npm run build
FROM node:13.10-alpine
# Create app directory
WORKDIR /usr/src
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY backend/package*.json ./
# RUN npm install
# If you are building your code for production
RUN npm ci --only=production
# Bundle app source
COPY backend .
COPY --from=frontend /usr/src/dist/ /usr/src/public/
EXPOSE 3000
CMD [ "node", "./bin/www" ]