Skip to content

Commit 990efa1

Browse files
author
Joel Hill
committed
Docker and NGINX config for deployment
1 parent 57bff0e commit 990efa1

File tree

4 files changed

+30
-3
lines changed

4 files changed

+30
-3
lines changed

Dockerfile

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
FROM node:18 as build
2+
3+
WORKDIR /app
4+
5+
ENV PATH /app/node_modules/.bin:$PATH
6+
7+
COPY package.json /app/package.json
8+
COPY package-lock.json /app/package-lock.json
9+
RUN npm install
10+
RUN npm install -g @angular/cli
11+
12+
COPY . /app
13+
RUN npm run build
14+
15+
FROM nginx:1.23-alpine
16+
COPY nginx.conf /etc/nginx/conf.d/default.conf
17+
COPY --from=build /app/dist/sk-health /usr/share/nginx/html
18+
19+
EXPOSE 80

angular.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
"budgets": [
4242
{
4343
"type": "initial",
44-
"maximumWarning": "500kb",
45-
"maximumError": "1mb"
44+
"maximumWarning": "2mb",
45+
"maximumError": "5mb"
4646
},
4747
{
4848
"type": "anyComponentStyle",

nginx.conf

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
server {
2+
listen 80;
3+
location / {
4+
root /usr/share/nginx/html;
5+
index index.html index.htm;
6+
try_files $uri $uri/ /index.html =404;
7+
}
8+
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"ng": "ng",
66
"config": "npx ts-node ./src/assets/setEnv.ts",
77
"start": "npm run config -- --environment=dev && ng serve",
8-
"build": "npm run config -- --environment=prod && ng build --prod",
8+
"build": "npm run config -- --environment=prod && ng build --configuration production --aot",
99
"watch": "ng build --watch --configuration development",
1010
"test": "ng test",
1111
"lint": "ng lint"

0 commit comments

Comments
 (0)