yt-audio-dl / Dockerfile
nnilayy's picture
Update python
4a1c06d
raw
history blame contribute delete
642 Bytes
# Use Python slim image for efficiency
FROM python:3.10-slim
# Set up environment variables
ENV PYTHONUNBUFFERED=1 \
PATH="/home/user/.local/bin:$PATH"
# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
&& rm -rf /var/lib/apt/lists/*
# Create non-root user
RUN useradd -m -u 1000 user
USER user
WORKDIR /app
# Install Python dependencies
COPY --chown=user requirements.txt .
RUN pip install --no-cache-dir --user -r requirements.txt
# Copy application files
COPY --chown=user . .
# Expose port
EXPOSE 7860
# Run application
CMD ["python", "app.py"]