1
0
Fork 0
iptv/Dockerfile
2026-05-03 14:23:08 +03:00

9 lines
120 B
Docker

FROM python:3.14
WORKDIR /app
COPY main.py .
STOPSIGNAL SIGINT
ENV PORT=80
EXPOSE 80
CMD ["python3", "-u", "main.py"]