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;"]