We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db147ca commit c1001b6Copy full SHA for c1001b6
Dockerfile
@@ -19,8 +19,10 @@ COPY --from=requirements-stage /tmp/requirements.txt /app/requirements.txt
19
COPY . .
20
21
# Install packages: https://stackoverflow.com/a/68666500/4457856
22
+# hadolint ignore=DL3008
23
RUN apt-get update \
- && apt-get install -y ffmpeg libsm6 libxext6
24
+ && apt-get install -y --no-install-recommends ffmpeg libsm6 libxext6 \
25
+ && rm -rf /var/lib/apt/lists/*
26
27
# Install dependencies
28
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
0 commit comments