diff --git a/Dockerfile b/Dockerfile index f1be79e..8abb4da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,5 +4,4 @@ WORKDIR /app COPY ipserv.py /app EXPOSE 80/tcp RUN pip install fastapi requests gunicorn uvicorn[standard] aiohttp -ARG WORKERS=${WORKERS:-4} -CMD ["gunicorn", "-w", ${WORKERS}, "-b", "0.0.0.0:80", "--forwarded-allow-ips", "*", "--worker-class", "uvicorn.workers.UvicornWorker", "ipserv:app"] \ No newline at end of file +CMD ["gunicorn", "-b", "0.0.0.0:80", "--forwarded-allow-ips", "*", "--worker-class", "uvicorn.workers.UvicornWorker", "ipserv:app"] \ No newline at end of file