Initial working proof of concept

This commit is contained in:
Simon Willison 2017-10-22 17:41:19 -07:00
commit de04d7a854
5 changed files with 74 additions and 0 deletions

6
Dockerfile Normal file
View file

@ -0,0 +1,6 @@
FROM python:3
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 8006
CMD ["python", "app.py"]