Files
games/Dockerfile
T
mdaleo404 4568620f4f
Build Docker Image & Security / build-scan-push (push) Successful in 2m37s
Update NGINX image version in Dockerfile
2026-09-16 10:03:22 +01:00

8 lines
140 B
Docker

FROM nginx:stable-alpine3.24
RUN rm -rf /usr/share/nginx/html/*
COPY . /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]