add Deno to image
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 2m39s
Build and Push Docker Image / deploy-on-green (push) Successful in 9s

This commit is contained in:
2025-10-22 19:04:11 -04:00
parent 0c1e715f98
commit 0c21a854d2

View File

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