Files
armandine/Dockerfile

11 lines
264 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Armandine gallery static site served by Nginx
FROM nginx:alpine
# Copy static site into default Nginx docroot
COPY src/ /usr/share/nginx/html/
# Optional: custom nginx config could be COPY'd here
# COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80