FROM python:3.9-alpine WORKDIR /app ADD requirements.txt . RUN pip3 install -r requirements.txt ADD proxy.py . ENTRYPOINT ["python3", "proxy.py"]