builds for docker

This commit is contained in:
Blair Vanderlugt 2021-04-10 12:17:16 -07:00
parent 2ef78f47a9
commit acd02deb08
3 changed files with 46 additions and 17 deletions

View File

@ -1,4 +1,3 @@
### STAGE 1: Build ###
# defining version of the base image
FROM node:alpine as build
@ -6,15 +5,16 @@ FROM node:alpine as build
WORKDIR /app
# copying the json files into the image
COPY package*.json ./
COPY package*.json .
COPY patch-webpack.js .
RUN npm install
# copying rest of project
COPY . .
# running build script
RUN npm run build --prod
RUN npm run build:prod
### STAGE 2: Setup ###
# defining nginx image version
@ -27,8 +27,8 @@ RUN rm -rf /usr/share/nginx/html/*
COPY --from=build /app/dist/cic-staff-client /usr/share/nginx/html
# copy nginx configuration file
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY nginx.conf /etc/nginx/
EXPOSE 80 443
EXPOSE 80
CMD [ "nginx", "-g", "daemon off;" ]

View File

@ -1,8 +1,41 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
}
}

View File

@ -36,10 +36,6 @@ function setConfigs(configs): void {
});
}
if (!process.env.CIC_REGISTRY_ADDRESS) {
console.error(colors.red('All the required environment variables were not provided!'));
process.exit(-1);
}
if (isProduction) {
console.log(colors.cyan('Running in production environment!'));