Files
phorge.fr/Dockerfile
l-nmch 130aaf777d
All checks were successful
Docker Build and Push for Main Branch / docker (push) Successful in 2m14s
chore(core) Removed CLI access and Modified service names
2026-05-12 21:06:45 +02:00

10 lines
113 B
Docker

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