8 lines
189 B
Docker
8 lines
189 B
Docker
# Use nginx mainline as parent image
|
|
FROM nginx:mainline
|
|
|
|
# Make port 80 available to the world outside this container
|
|
EXPOSE 80
|
|
|
|
# Copy over html documents
|
|
COPY html /usr/share/nginx/html
|