-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
30 lines (25 loc) · 915 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
FROM node:lts-alpine as build
ARG API_HOST
ARG API_PORT
WORKDIR /app
# Copy both 'package.json' and 'package-lock.json' (if available)
# This speeds up caching
# COPY npm-shrinkwrap.json ./
COPY package*.json ./
COPY .env.production.local ./
# install project dependencies
RUN npm install
# copy project files and folders to the current working directory (i.e. 'app' folder)
# Note that this could be less
COPY ./ .
# build app for production with minification
RUN npm run build
# RUN rm dist/js/*.map
FROM nginxinc/nginx-unprivileged:1.25 as release
ARG API_HOST
ARG API_PORT
COPY --from=build /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
RUN sed -i "s/http:\/\/localhost/http:\/\/${API_HOST}/g" /etc/nginx/conf.d/default.conf
RUN sed -i "s/:1200;/:${API_PORT};/g" /etc/nginx/conf.d/default.conf
HEALTHCHECK CMD curl --silent --fail http://localhost:80/ >/dev/null || exit 1