update req.txt
This commit is contained in:
parent
d79161177d
commit
0e324036bc
@ -1,14 +1,29 @@
|
|||||||
FROM python:3.11-slim
|
FROM python:3.11-slim
|
||||||
|
|
||||||
RUN apt update && apt install -y curl ffmpeg && \
|
# Install ffmpeg + curl and download latest yt-dlp binary
|
||||||
|
RUN apt update && \
|
||||||
|
apt install -y curl ffmpeg && \
|
||||||
curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp && \
|
curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp && \
|
||||||
chmod a+rx /usr/local/bin/yt-dlp
|
chmod a+rx /usr/local/bin/yt-dlp && \
|
||||||
|
apt clean && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Set working directory
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Copy project files
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
|
# Install Python dependencies
|
||||||
RUN pip install --no-cache-dir -r requirements.txt
|
RUN pip install --no-cache-dir -r requirements.txt
|
||||||
|
|
||||||
|
# Create volume path (optional - will be mounted later in K8s)
|
||||||
|
RUN mkdir -p /music
|
||||||
|
|
||||||
|
# Declare env var for clean override later in Helm
|
||||||
ENV MUSIC_DIR=/music
|
ENV MUSIC_DIR=/music
|
||||||
|
|
||||||
|
# Expose FastAPI port
|
||||||
|
EXPOSE 8000
|
||||||
|
|
||||||
|
# Start app
|
||||||
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
|
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,5 +1,5 @@
|
|||||||
fastapi
|
fastapi
|
||||||
uvicorn
|
uvicorn
|
||||||
|
pydantic-settings
|
||||||
|
yt-dlp
|
||||||
requests
|
requests
|
||||||
pydantic>=2.0
|
|
||||||
pydantic-settings>=2.0
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user