Files
pulse-docs/runbooks/test-octal-dockerfile

6 lines
157 B
Plaintext

# Stage 1: build — nginx com HTML injetado
FROM nginx:alpine
COPY index.html /usr/share/nginx/html/index.html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]