9 lines
189 B
Text
9 lines
189 B
Text
![]() |
# 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
|