GardenPlanner/Dockerfile

8 lines
139 B
Docker
Raw Normal View History

2023-06-25 23:37:47 +02:00
FROM nginx:latest
COPY devops/nginx.conf /etc/nginx/
COPY build/web /usr/share/nginx/html
EXPOSE 8080
CMD ["nginx", "-g", "daemon off;"]