Dockerfile
FROM nginx:stable-alpine-slim
COPY ./dist /usr/share/nginx/html
COPY ./default.conf /etc/nginx/conf.d/
RUN ch
2023-04-05