Last active
April 7, 2021 11:50
-
-
Save Karnak19/d97ddda5c41fffc7fc33751bcaa2531a to your computer and use it in GitHub Desktop.
Caprover config files
This file contains hidden or 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
| { | |
| "schemaVersion": 2, | |
| "dockerfilePath" :"./Dockerfile" | |
| } |
This file contains hidden or 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
| 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; | |
| } | |
| } |
This file contains hidden or 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
| # build environment | |
| FROM node:14 as builder | |
| WORKDIR /usr/src/app | |
| ENV PATH /usr/src/app/node_modules/.bin:$PATH | |
| COPY . /usr/src/app | |
| RUN npm install | |
| RUN npm run build | |
| # production environment | |
| FROM nginx:1.13.9-alpine | |
| RUN rm -rf /etc/nginx/conf.d | |
| RUN mkdir -p /etc/nginx/conf.d | |
| COPY ./default.conf /etc/nginx/conf.d/ | |
| COPY --from=builder /usr/src/app/dist /usr/share/nginx/html | |
| EXPOSE 80 | |
| CMD ["nginx", "-g", "daemon off;"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment