Added interpolation arg, updated docs, provided Dockerfile + instructions
This commit is contained in:
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM python:3.12-slim-bookworm
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY video_to_gif.py /app/video_to_gif.py
|
||||
|
||||
RUN apt update && \
|
||||
apt upgrade && \
|
||||
apt install ffmpeg -y
|
||||
|
||||
ENTRYPOINT ["python", "video_to_gif.py"]
|
||||
Reference in New Issue
Block a user