This repository has been archived on 2019-06-21. You can view files and clone it, but cannot push or open issues or pull requests.
motivationsBot/Dockerfile

11 lines
144 B
Docker
Raw Normal View History

2019-06-21 13:20:46 +00:00
FROM python:3.7
RUN mkdir /app
WORKDIR /app
COPY ./ /app
RUN pip install --no-cache-dir -r requirements.txt
CMD [ "python", "/app/run.py" ]