postserve/Dockerfile

9 lines
184 B
Docker
Raw Normal View History

2017-05-04 19:30:28 -04:00
FROM python:3.4
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY . /usr/src/app/
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "-u","/usr/src/app/server.py"]