-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
39 lines (30 loc) · 909 Bytes
/
Copy pathDockerfile
File metadata and controls
39 lines (30 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Use official Python slim image
# significantly smaller than nvidia/cuda base
# PyTorch wheels will provide necessary CUDA runtime libraries
FROM python:3.10-slim
# Set environment variables
ENV PYTHONUNBUFFERED=1
# Install system dependencies
# ffmpeg is crucial for audio processing
# git is needed for pip installs from git
RUN apt-get update && apt-get install -y \
ffmpeg \
git \
&& rm -rf /var/lib/apt/lists/*
# Create app directory
WORKDIR /app
# Copy requirements first to leverage cache
COPY requirements.txt .
# Install Python dependencies
# Use --no-cache-dir to keep image size small
# Increase timeout for large downloads
RUN pip install --default-timeout=1000 --no-cache-dir -r requirements.txt
# Copy source code
COPY . .
# Expose the Flask port
EXPOSE 7860
# Define the run command
# Ensure run.sh is executable
RUN chmod +x run.sh
# Run the application
CMD ["./run.sh"]