Files
hola/Dockerfile
mi c760afa330
Some checks failed
Deploy to VM / deploy (push) Failing after 55s
🎉 initial commit
2025-11-03 21:07:40 +10:00

14 lines
310 B
Docker

# Use nginx alpine for a small production image
FROM nginx:alpine
# Copy custom nginx configuration
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Copy site files to nginx html directory
COPY site/ /usr/share/nginx/html/
# Expose port 80
EXPOSE 80
# nginx alpine image already has the CMD to start nginx