Files
emmanuelbernard.ch/Dockerfile

11 lines
210 B
Docker

FROM nginx:alpine
# Copy static assets to nginx default html folder
COPY index.html /usr/share/nginx/html/index.html
# Expose port 80
EXPOSE 80
# Start nginx in foreground
CMD ["nginx", "-g", "daemon off;"]