Skip to content

Instantly share code, notes, and snippets.

@Karnak19
Last active April 7, 2021 11:50
Show Gist options
  • Select an option

  • Save Karnak19/d97ddda5c41fffc7fc33751bcaa2531a to your computer and use it in GitHub Desktop.

Select an option

Save Karnak19/d97ddda5c41fffc7fc33751bcaa2531a to your computer and use it in GitHub Desktop.
Caprover config files
{
"schemaVersion": 2,
"dockerfilePath" :"./Dockerfile"
}
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;
}
}
# 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