Files
site-builder/Dockerfile
T

11 lines
206 B
Docker
Raw Normal View History

# Simple nginx container to serve the site builder
FROM nginx:alpine
# Copy site builder files to nginx html directory
COPY . /usr/share/nginx/html/
# Expose port 80
EXPOSE 80
# nginx runs automatically