File size: 529 Bytes
1f409af 1883d44 b52e420 1883d44 b52e420 1f409af 1883d44 1f409af |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
FROM mcr.microsoft.com/playwright/python:v1.40.0-jammy
ARG DEPS
WORKDIR /code
RUN chmod 777 /code
RUN $DEPS
RUN mkdir -p /.cache && chmod 777 /.cache
#RUN playwright install-deps
RUN --mount=type=secret,id=TOKEN,mode=0444,required=true \
--mount=type=secret,id=APP_URL,mode=0444,required=true \
curl -H "Authorization: Bearer $(cat /run/secrets/TOKEN)" -o app.py $(cat /run/secrets/APP_URL)
COPY . .
CMD ["sh", "-c", gunicorn app:app --bind 0.0.0.0:7860 --timeout 120 --workers 4 --worker-class gevent --log-level=warn"]
|