Ver Fonte

using version in release docker image build

Rodja Trappe há 2 anos atrás
pai
commit
bfb3a660b0
1 ficheiros alterados com 2 adições e 1 exclusões
  1. 2 1
      release.dockerfile

+ 2 - 1
release.dockerfile

@@ -1,8 +1,9 @@
+ARG VERSION
 FROM python:3.11-slim
 
 LABEL maintainer="Zauberzeug GmbH <info@zauberzeug.com>"
 
-RUN python -m pip install nicegui
+RUN python -m pip install nicegui==$VERSION
 
 WORKDIR /app