Add build step for Docker container

This commit is contained in:
Keannu Christian Bernasol 2024-10-17 18:53:49 +08:00
parent 2ca1dc97f0
commit 9fcdac56cb
3 changed files with 46 additions and 0 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM node:18-alpine as build
WORKDIR /usr/local/app
COPY ./ /usr/local/app/
RUN npm install
RUN chmod +x /usr/local/app/build.sh
RUN /usr/local/app/build.sh
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