-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
46 lines (34 loc) · 981 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
41
42
43
44
45
46
FROM node:18.12.1-alpine as builder
# python2 support
RUN apk add --update \
python3 \
python3-dev \
py-pip \
build-base \
git \
openssh-client \
&& pip install --ignore-installed distlib virtualenv \
&& rm -rf /var/cache/apk/* \
# make the 'app' folder the current working directory
WORKDIR /app
# copy both 'package.json'
COPY package.json ./
# remove node_modules if exists
RUN rm -rf node_modules
# remove package-lock.json if exists
RUN rm -rf package-lock.json
# clean npm cache
RUN npm cache clean --force
# install project dependencies
RUN npm install
# reinstall i18n
RUN npm i [email protected]
# copy project files and folders to the current working directory (i.e. 'app' folder)
COPY . .
# build app for production with minification
RUN npm run build:prod_u
FROM nginx:1.15.2-alpine as production-build
COPY --from=builder dist_prod /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 8080
CMD ["nginx", "-g", "daemon off;"]