Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt && \
pip install openai-whisper && \
pip install jsonschema
pip install jsonschema && \
pip install yt-dlp

# Create the appuser
RUN useradd -m appuser
Expand Down Expand Up @@ -197,4 +198,4 @@ gunicorn --bind 0.0.0.0:8080 \
chmod +x /app/run_gunicorn.sh

# Run the shell script
CMD ["/app/run_gunicorn.sh"]
CMD ["/app/run_gunicorn.sh"]
Loading