mirror of
https://github.com/iv-org/youtube-trusted-session-generator.git
synced 2025-01-15 16:12:21 +01:00
18 lines
No EOL
308 B
Docker
18 lines
No EOL
308 B
Docker
FROM python:3.12-alpine
|
|
|
|
RUN apk add --no-cache \
|
|
chromium \
|
|
nss \
|
|
freetype \
|
|
freetype-dev \
|
|
harfbuzz \
|
|
ca-certificates \
|
|
ttf-freefont
|
|
|
|
WORKDIR /usr/app/src
|
|
COPY index.py requirements.txt ./
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
# Run
|
|
CMD [ "python", "./index.py"] |