Skip to content

Commit c02359b

Browse files
author
Matthew Fisher
committed
Merge pull request #30 from bacongobbler/add-dockerfile
feat(docs): add dockerfile
2 parents 46a1e9c + 3556887 commit c02359b

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM python:3.5.1-alpine
2+
3+
COPY . /app
4+
WORKDIR /app
5+
6+
RUN pip install -r requirements.txt
7+
8+
EXPOSE 8000
9+
CMD ["mkdocs", "serve", "-a", "0.0.0.0:8000"]

0 commit comments

Comments
 (0)