postserve/Dockerfile

12 lines
246 B
Docker
Raw Normal View History

2019-02-18 13:06:50 +09:00
FROM python:3.7.2
2017-05-04 19:30:28 -04:00
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
2017-05-04 20:53:06 -04:00
VOLUME /mapping
2019-03-22 14:30:09 +09:00
COPY requirements.txt /usr/src/app/
2017-05-04 19:30:28 -04:00
RUN pip install --no-cache-dir -r requirements.txt
2019-03-22 14:30:09 +09:00
COPY server.py /usr/src/app/
2017-05-04 19:30:28 -04:00
2019-02-18 13:06:50 +09:00
CMD ["python", "-u","/usr/src/app/server.py"]