diff --git a/Dockerfile b/Dockerfile index b9036e2..c68bd35 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,5 +4,4 @@ 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"] - \ No newline at end of file +CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0", "--forwarded-allow-ips", "*", "ipserv:app"] \ No newline at end of file