datasette/Dockerfile

7 lines
138 B
Text
Raw Normal View History

2017-10-22 17:41:19 -07:00
FROM python:3
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
RUN python app.py --build
2017-10-22 17:41:19 -07:00
EXPOSE 8006
CMD ["python", "app.py"]