forked from gruppe-adler/planning.gruppe-adler.de
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
62 lines (41 loc) · 1.31 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
FROM node:10 AS api-builder
# Create app directory
WORKDIR /tmp/
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY ./api/package*.json ./
# Install node_modules
RUN npm ci
# Bundle app source
COPY ./api .
# Compile
RUN [ "npm", "run", "build" ]
##########################################################################################
FROM node:10 AS frontend-builder
# Create app directory
WORKDIR /tmp/
# 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 ./
# Install node_modules
RUN npm ci
# Bundle app source
COPY ./frontend .
# Build project
ENV NODE_ENV production
# Compile
RUN [ "npm", "run", "build" ]
##########################################################################################
FROM node:10-alpine
WORKDIR /usr/src/app/
# Copy homepage from frontend-builder
COPY --from=frontend-builder /tmp/dist ./frontend/
# Copy api stuff from api-builder
COPY --from=api-builder /tmp/build ./build/
COPY --from=api-builder /tmp/package*.json ./
# Install depencies
RUN npm ci --only=production
EXPOSE 80
ENTRYPOINT [ "npm", "run", "prod" ]