spejstore/Dockerfile

8 lines
146 B
Docker
Raw Normal View History

2016-09-29 20:20:10 +00:00
FROM python:3.5
ENV PYTHONUNBUFFERED 1
RUN mkdir /code
WORKDIR /code
ADD requirements.txt /code/
RUN pip install -r requirements.txt
ADD . /code/