2020-04-10 14:14:34 +00:00
|
|
|
FROM python
|
|
|
|
|
|
2020-04-22 18:23:18 +00:00
|
|
|
COPY ./requirements.txt /app/requirements.txt
|
2020-04-10 14:14:34 +00:00
|
|
|
RUN pip install -r /app/requirements.txt
|
|
|
|
|
|
2020-04-22 18:23:18 +00:00
|
|
|
COPY ./ /app
|
|
|
|
|
|
2020-04-10 14:14:34 +00:00
|
|
|
CMD python /app/run.py
|