8 lines
173 B
Docker
8 lines
173 B
Docker
FROM nginx:alpine
|
|
|
|
# Copy the static documentation files into the Nginx default html directory
|
|
COPY . /usr/share/nginx/html
|
|
|
|
# Expose port 80 inside the container
|
|
EXPOSE 80
|