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:27:58 +01:00

8 lines
No EOL
173 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", "ipserv:app"]