docs, Dockerfile should bind to port 80

This commit is contained in:
Tom Gallacher 2017-01-27 13:09:49 +00:00
parent 8d21157996
commit 21a8602b7d
1 changed files with 2 additions and 2 deletions

View File

@ -12,5 +12,5 @@ COPY Makefile .
COPY source ./source/
RUN make html
WORKDIR /docs/build/html/
EXPOSE 8080
CMD ["python", "-m", "http.server", "8080"]
EXPOSE 80
CMD ["python", "-m", "http.server", "80"]