Files
ivanch.me/Dockerfile
José Henrique a4ce33e4a7
All checks were successful
Homepage Build and Deploy / Build Homepage Image (push) Successful in 10m20s
Homepage Build and Deploy / Deploy Homepage (push) Successful in 11s
adding pipe and touches
2025-08-22 22:07:08 -03:00

7 lines
99 B
Docker

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