11 lines
206 B
Docker
11 lines
206 B
Docker
|
|
# 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
|