10 lines
160 B
Docker
10 lines
160 B
Docker
FROM python:3.11
|
|
|
|
LABEL maintainer="Offends <offends4@163.com>"
|
|
|
|
RUN apt update \
|
|
&& apt-get install ffmpeg -y
|
|
|
|
COPY ./start.sh /start.sh
|
|
|
|
CMD ["/start.sh"] |