Offload deployments to Cloudflare

This commit is contained in:
Keannu Christian Bernasol 2024-10-17 15:31:08 +08:00
parent 88dfe2cc6b
commit 0c89725995
3 changed files with 0 additions and 53 deletions

View file

@ -1,22 +0,0 @@
FROM node:18-alpine as build
WORKDIR /usr/local/app
COPY ./ /usr/local/app/
RUN npm install
RUN npm run build
FROM nginx:latest
RUN rm -rf /usr/share/nginx/html/*
COPY --from=build /usr/local/app/ /usr/share/nginx/html
COPY nginx/nginx.conf /etc/nginx/conf.d/default.conf
RUN service nginx restart
EXPOSE 80