mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-25 08:41:00 +00:00
Don't cache pip packages when building docker image (#131)
This commit is contained in:
parent
d4ddea0712
commit
3e313800fc
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ RUN apt-get update \
|
||||||
# Required to build lxml on arm64.
|
# Required to build lxml on arm64.
|
||||||
libxslt1-dev \
|
libxslt1-dev \
|
||||||
zlib1g-dev \
|
zlib1g-dev \
|
||||||
&& python3 -m pip install --upgrade -r requirements.txt \
|
&& python3 -m pip install --no-cache-dir --upgrade -r requirements.txt \
|
||||||
&& apt-get purge -y --auto-remove \
|
&& apt-get purge -y --auto-remove \
|
||||||
gcc \
|
gcc \
|
||||||
libc6-dev \
|
libc6-dev \
|
||||||
|
|
Loading…
Reference in a new issue