update pip at container build
All checks were successful
ci/woodpecker/push/tests Pipeline was successful

This commit is contained in:
Ivan Schaller 2022-07-18 21:03:42 +02:00
parent 3a17210ffe
commit dd56f5564b
2 changed files with 6 additions and 2 deletions

View file

@ -19,7 +19,9 @@ RUN \
# prepare app
RUN \
echo "**** creating folders ****" \
&& mkdir -p /app
&& mkdir -p /app \
&& echo "**** updating pip ****" \
&& python3 -m pip install --upgrade pip
# cleanup installation
RUN \

View file

@ -19,7 +19,9 @@ RUN \
# prepare app
RUN \
echo "**** creating folders ****" \
&& mkdir -p /app
&& mkdir -p /app \
&& echo "**** updating pip ****" \
&& python3 -m pip install --upgrade pip
# cleanup installation
RUN \