Files
my-bar/front/src/Dockerfile
2025-03-12 17:54:16 +04:00

5 lines
121 B
Docker

FROM nginx:alpine as nginx
WORKDIR /app
COPY ../nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
CMD "nginx" "-g" "daemon off;"