FROM python:3.11 RUN mkdir /app ADD . /app RUN pip install -r /app/requirements.txt WORKDIR /app CMD [ "python", "/app/proxy.py" ]