Files
Transcendence/srcs/frontend/dockerfile
T
2026-01-09 13:49:09 +01:00

5 lines
134 B
Docker

FROM nginx:20-alpine
COPY src /usr/share/nginx/html
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]