forked from AmruthPillai/Reactive-Resume
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f07a961
commit da19526
Showing
5 changed files
with
67 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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;"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: '3.7' | ||
|
||
services: | ||
reactive-resume: | ||
container_name: reactive-resume | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
expose: | ||
- '80' | ||
ports: | ||
- '80:80' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
} | ||
|
||
} |