File size: 307 Bytes
9854d3a af58f06 9854d3a cff4598 9854d3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM python:3.11
RUN apt-get install -y git
WORKDIR /app
RUN --mount=type=secret,id=GITHUB,mode=0444,required=true \
GITHUB=$(cat /run/secrets/GITHUB) && \
git clone https://${GITHUB}@github.com/omrahm/proxy.git /app
RUN pip install -r requirements.txt
EXPOSE 7860
CMD [ "python3", "index.py" ] |