mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-21 11:23:02 +00:00
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` ;)
This commit is contained in:
parent
9e111a334b
commit
a5dda7ae91
1 changed files with 1 additions and 2 deletions
|
@ -7,8 +7,7 @@
|
|||
FROM python:3.12-slim-bullseye as build
|
||||
WORKDIR /sherlock
|
||||
|
||||
RUN apt-get update \
|
||||
pip3 install --no-cache-dir --upgrade pip
|
||||
RUN pip3 install --no-cache-dir --upgrade pip
|
||||
|
||||
FROM python:3.12-slim-bullseye
|
||||
WORKDIR /sherlock
|
||||
|
|
Loading…
Reference in a new issue