Mingor(100757) ba58292664
Some checks failed
CI/CD / build-and-deploy (push) Failing after 52s
done.
2024-09-18 15:51:51 +08:00

10 lines
288 B
Docker

FROM nginx:1.27.1-alpine
COPY nginx.default.conf /etc/nginx/conf.d/default.conf
COPY ./dist/ /usr/share/nginx/html
#COPY ./public/config.json /usr/share/nginx/html
EXPOSE 80
WORKDIR /usr/share/nginx/html
RUN touch config.json && echo "{}" >> config.json
CMD ["nginx","-g","daemon off;"]