Skip to content

Commit a5dda7a

Browse files
Remove not needed apt-get update in Dockerfile
There's no need to wait and waste the time and bandwidth to wait for `apt-get update` for `pip3 install` ;)
1 parent 9e111a3 commit a5dda7a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
FROM python:3.12-slim-bullseye as build
88
WORKDIR /sherlock
99

10-
RUN apt-get update \
11-
pip3 install --no-cache-dir --upgrade pip
10+
RUN pip3 install --no-cache-dir --upgrade pip
1211

1312
FROM python:3.12-slim-bullseye
1413
WORKDIR /sherlock

0 commit comments

Comments
 (0)