cic-internal-integration/apps/cic-staff-client/Dockerfile

37 lines
684 B
Docker
Raw Normal View History

2021-08-12 03:00:57 +02:00
# defining version of the base image
FROM node:alpine as build
# defining work directory
WORKDIR /app
# copying the json files into the image
COPY package*.json .
COPY patch-webpack.js .
RUN npm install
# copying rest of project
COPY . .
ARG BUILD_ENV="production"
# running build script
RUN npm run build:${BUILD_ENV}
### STAGE 2: Setup ###
# defining nginx image version
FROM nginx:alpine
## Remove default nginx website
RUN rm -rf /usr/share/nginx/html/*
# copy dist output from our first image
COPY --from=build /app/dist/cic-staff-client /usr/share/nginx/html
# copy nginx configuration file
COPY nginx.conf /etc/nginx/
EXPOSE 80
CMD [ "nginx", "-g", "daemon off;" ]