youtube-trusted-session-gen.../Dockerfile
2024-11-17 15:32:29 +01:00

25 lines
535 B
Docker

FROM python:3.12-alpine3.19
# Install dependencies
RUN apk add --no-cache \
xvfb \
nss \
freetype \
freetype-dev \
harfbuzz \
ca-certificates \
ttf-freefont \
chromium \
chromium-chromedriver
WORKDIR /app
COPY index.py requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY docker/scripts/startup.sh ./
RUN sed -i 's/await self.sleep(0.5)/await self.sleep(2)/' /usr/local/lib/python3.12/site-packages/nodriver/core/browser.py
# Run
CMD [ "./startup.sh"]