Files
phorge.fr/Dockerfile
l-nmch c6f5f77d7c
Some checks failed
Docker Build and Push for Main Branch / docker (push) Has been cancelled
first commit
2026-05-11 14:52:46 +02:00

11 lines
138 B
Docker

FROM nginx:stable-alpine
WORKDIR /usr/share/nginx/html
COPY index.html ./
COPY src ./src
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]