mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-09 20:12:26 +10:00
36 lines
739 B
Docker
36 lines
739 B
Docker
## 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
|
|
|
|
## 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;"] |