Update Dockerfile.cpu
This commit is contained in:
@@ -5,7 +5,7 @@ WORKDIR /subgen
|
|||||||
|
|
||||||
# Install required build dependencies
|
# Install required build dependencies
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
ffmpeg --fix-missing \
|
ffmpeg \
|
||||||
git \
|
git \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
@@ -18,9 +18,12 @@ FROM python:3.11-slim-bullseye AS runtime
|
|||||||
|
|
||||||
WORKDIR /subgen
|
WORKDIR /subgen
|
||||||
|
|
||||||
|
# Install only required runtime dependencies
|
||||||
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
ffmpeg \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Copy only necessary files from builder stage
|
# Copy only necessary files from builder stage
|
||||||
COPY --from=builder /usr/bin/ffmpeg /usr/bin/ffmpeg
|
|
||||||
COPY --from=builder /usr/bin/ffprobe /usr/bin/ffprobe
|
|
||||||
COPY --from=builder /install /usr/local
|
COPY --from=builder /install /usr/local
|
||||||
|
|
||||||
# Copy source code
|
# Copy source code
|
||||||
|
|||||||
Reference in New Issue
Block a user