43 lines
1.0 KiB
Docker
Executable File
43 lines
1.0 KiB
Docker
Executable File
# Stage 1: Builder
|
|
FROM nvidia/cuda:12.3.2-cudnn9-runtime-ubuntu22.04 AS builder
|
|
|
|
WORKDIR /subgen
|
|
|
|
# Install system dependencies
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
python3 \
|
|
python3-pip \
|
|
ffmpeg \
|
|
git \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Copy requirements and install Python dependencies
|
|
COPY requirements.txt .
|
|
RUN pip3 install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy application code
|
|
COPY . .
|
|
|
|
# Stage 2: Runtime
|
|
FROM nvidia/cuda:12.3.2-cudnn9-runtime-ubuntu22.04
|
|
|
|
WORKDIR /subgen
|
|
|
|
# Copy necessary files from the builder stage
|
|
COPY --from=builder /subgen/launcher.py .
|
|
COPY --from=builder /subgen/subgen.py .
|
|
COPY --from=builder /subgen/language_code.py .
|
|
COPY --from=builder /usr /usr
|
|
|
|
# Install runtime dependencies
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
ffmpeg \
|
|
python3 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ENV PYTHONUNBUFFERED=1 \
|
|
PYTHONPATH=/usr/local/lib/python3.10/site-packages
|
|
|
|
# Set command to run the application
|
|
CMD ["python3", "launcher.py"]
|