From 8a0ac6a5e703da6e72653b9f785f16a10d4ffab8 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sat, 29 Apr 2023 23:00:07 +0200 Subject: [PATCH] disable pip version check in dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index f322b98..098428a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,7 @@ RUN date +'%Y-%m-%d %H:%M %Z' > /build-date FROM python:3.11.3-slim-bullseye AS final ARG DEBIAN_FRONTEND=noninteractive +ARG PIP_DISABLE_PIP_VERSION_CHECK=1 # Setup user & group ##############################################