This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/yoomoney_src/Dockerfile
ParkSuMin ad7f6edcc0 Delete
2025-02-24 20:30:00 +03:00

15 lines
229 B
Docker

FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
COPY main.py .
COPY reg.py .
COPY check_ip.py .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 5000
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "main:app"]