pinout.vvzero.com/Dockerfile
Simo Tumelius e80c814053 Add Dockerfile for containerized webserver
* Add "Running in Docker" subsection to README.md
2018-11-05 19:25:11 +02:00

10 lines
160 B
Docker

FROM python:2.7-slim
COPY . ./
RUN apt-get update && \
apt-get install -y make
RUN pip install -r requirements.txt
CMD ["bash", "-c", "make serve LANG=en"]