FROM python:3.10 COPY ./requirements.txt /srv/proxy/requirements.txt WORKDIR /srv/proxy RUN pip install --no-cache-dir -r requirements.txt COPY . /srv/proxy ENTRYPOINT ./run.sh