uploader/Dockerfile
2023-09-28 02:05:14 +03:00

6 lines
127 B
Docker

FROM python:slim
WORKDIR /app
ADD . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 80
CMD ["python", "main.py"]