blob: cffc71ae5d1645605d29eab74c92c0a1c255f7cb [file] [log] [blame]
FROM python:3
ENV PYTHONUNBUFFERED 1
RUN mkdir /code
WORKDIR /code
COPY requirements.txt /code/
RUN pip install -r requirements.txt
COPY . /code/