recorderbashingbot/Dockerfile
2020-10-02 03:55:30 +02:00

10 lines
165 B
Docker

FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
CMD [ "python", "-u", "./main.py" ]