Files
assets-bot/Dockerfile
2021-01-03 15:10:47 +03:00

11 lines
189 B
Docker

FROM python:3.8-slim
RUN apt update && apt install -y git
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./optimizer_worker.py" ]