diff options
Diffstat (limited to 'standalone/src/main')
-rw-r--r-- | standalone/src/main/assembly/dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/standalone/src/main/assembly/dockerfile b/standalone/src/main/assembly/dockerfile index f834be9..c6636f3 100644 --- a/standalone/src/main/assembly/dockerfile +++ b/standalone/src/main/assembly/dockerfile @@ -1,5 +1,5 @@ # hadolint ignore=DL3007 -FROM tensorflow/serving:latest +FROM tensorflow/serving:2.10.0 WORKDIR /home/uuihome/uui @@ -25,6 +25,7 @@ RUN groupadd uui -g 1000 && \ ln -sf /usr/bin/python3 /usr/bin/python && \ ln -sf /usr/bin/pip3 /usr/bin/pip && \ pip install --upgrade setuptools && \ + pip install --upgrade pip && \ pip install wheel && \ pip install torch==1.10.1 torchvision==0.11.2+cpu torchaudio==0.10.1 --extra-index-url https://download.pytorch.org/whl/cpu && \ pip install --no-cache-dir -r requirements.txt && \ |