Revert "install zstd for it to work on 3.14"
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 21s
Build and Push Docker Image / deploy-on-green (push) Successful in 8s

This reverts commit 0821359792.
This commit is contained in:
2025-10-08 09:21:04 -04:00
parent 0821359792
commit 0cf1b4a6df

View File

@@ -1,6 +1,6 @@
FROM python:3.14.0-alpine3.22 FROM python:3.13.7-alpine3.22
COPY ./app /app COPY ./app /app
WORKDIR /app WORKDIR /app
RUN apk add ffmpeg zstd RUN apk add ffmpeg
RUN pip install -r requirements.txt RUN pip install -r requirements.txt
CMD ["python", "/app/main.py"] CMD ["python", "/app/main.py"]