Skip to content

Commit c1001b6

Browse files
committed
ignore warnings for now
1 parent db147ca commit c1001b6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ COPY --from=requirements-stage /tmp/requirements.txt /app/requirements.txt
1919
COPY . .
2020

2121
# Install packages: https://stackoverflow.com/a/68666500/4457856
22+
# hadolint ignore=DL3008
2223
RUN apt-get update \
23-
&& 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/*
2426

2527
# Install dependencies
2628
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt

0 commit comments

Comments
 (0)