This repository has been archived on 2024-06-12. You can view files and clone it, but cannot push or open issues or pull requests.
ipserv/Dockerfile
2024-04-17 16:40:11 +01:00

7 lines
No EOL
198 B
Docker

FROM python:3-slim
WORKDIR /app
COPY ipserv.py /app
EXPOSE 8000
RUN pip install flask requests gunicorn
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0", "--forwarded-allow-ips", "*", "ipserv:app"]