fixed deployment

This commit is contained in:
2024-12-30 19:36:21 +01:00
parent ac1509c215
commit 6c9a985f8f
3 changed files with 28 additions and 2 deletions
+3 -1
View File
@@ -4,11 +4,13 @@ FROM python:3.10.16
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
# install ffmpeg
RUN apt-get update && apt-get install -y ffmpeg
# set work directory
WORKDIR /app
COPY pyproject.toml /app/
COPY config.yml /app/
COPY src/ /app/src
RUN pip install --upgrade pip