6 lines
190 B
Plaintext
6 lines
190 B
Plaintext
FROM alpine:latest
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN apk add --no-cache python3 py3-pip ffmpeg
|
|
RUN pip3 install --no-cache-dir --break-system-packages -r requirements.txt
|
|
CMD ["python3", "main.py"] |