10 lines
321 B
Plaintext
10 lines
321 B
Plaintext
# syntax=docker/dockerfile:1
|
|
FROM python:3.12.1-alpine3.18
|
|
WORKDIR /app
|
|
RUN apk update && \
|
|
apk add --no-cache build-base ffmpeg && \
|
|
rm -rf /var/cache/apk/*
|
|
COPY requirements.txt requirements.txt
|
|
RUN python3 -m pip install --no-cache-dir -r requirements.txt
|
|
COPY youdis.py youdis.py
|
|
CMD ["python3", "youdis.py"] |