Przeglądaj źródła

Merge branch 'main' of github.com:zauberzeug/nicegui

Falko Schindler 2 lat temu
rodzic
commit
f14e099eea
1 zmienionych plików z 2 dodań i 1 usunięć
  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