create production docker image

This commit is contained in:
Amruth Pillai 2020-03-31 14:56:40 +05:30
parent f07a961075
commit da19526e6e
No known key found for this signature in database
GPG Key ID: 09959E21662F51A0
5 changed files with 67 additions and 2 deletions

36
Dockerfile Normal file
View File

@ -0,0 +1,36 @@
## build image
FROM node:13.12.0-buster-slim as build
## set working directory
WORKDIR /usr/src/app
## add `/usr/src/app/node_modules/.bin` to $PATH
ENV PATH /usr/src/app/node_modules/.bin:$PATH
## install and cache app dependencies
COPY package.json /usr/src/app/package.json
## install app dependencies
RUN npm install --silent
## copy files
COPY . /usr/src/app
## build production app
RUN npm run build
## production environment
FROM nginx:1.17.9-alpine
## copy build artifacts to nginx
COPY --from=build /usr/src/app/build /usr/share/nginx/html
## copy custom nginx config
RUN rm /etc/nginx/conf.d/default.conf
COPY nginx/nginx.conf /etc/nginx/conf.d
## export port 80
EXPOSE 80
## run nginx server
CMD ["nginx", "-g", "daemon off;"]

View File

@ -10,7 +10,7 @@ ENV PATH /usr/src/app/node_modules/.bin:$PATH
## install and cache app dependencies
COPY package.json /usr/src/app/package.json
# install app dependencies
## install app dependencies
RUN npm install --silent
## start app

View File

@ -6,7 +6,7 @@ services:
tty: true
build:
context: .
dockerfile: Dockerfile
dockerfile: Dockerfile-dev
volumes:
- '.:/usr/src/app'
- '/usr/src/app/node_modules'

12
docker-compose.yml Normal file
View File

@ -0,0 +1,12 @@
version: '3.7'
services:
reactive-resume:
container_name: reactive-resume
build:
context: .
dockerfile: Dockerfile
expose:
- '80'
ports:
- '80:80'

17
nginx/nginx.conf Normal file
View File

@ -0,0 +1,17 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}