소스 검색

using version in release docker image build

Rodja Trappe 2 년 전
부모
커밋
bfb3a660b0
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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