mirror of
https://github.com/iv-org/youtube-trusted-session-generator.git
synced 2025-01-16 00:22:20 +01:00
18 lines
308 B
Text
18 lines
308 B
Text
|
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"]
|