From 483361839edaa11596b26b29930ac7e8a6a49cbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20P=C3=B6schl?= Date: Tue, 24 Sep 2024 21:27:44 +0200 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Update=20os=20dependencies?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vnc-viewer/Dockerfile | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/vnc-viewer/Dockerfile b/vnc-viewer/Dockerfile index ea6abfe..9006135 100644 --- a/vnc-viewer/Dockerfile +++ b/vnc-viewer/Dockerfile @@ -2,7 +2,7 @@ ARG BUILD_FROM FROM $BUILD_FROM AS NO_VNC RUN apt-get update && apt-get -y --no-install-recommends install \ - git=1:2.35.1-1 + git=1:2.39.5-0+deb12u1 RUN git config --global advice.detachedHead false && \ git clone https://github.com/novnc/noVNC.git -b v1.3.0 /noVNC @@ -10,13 +10,13 @@ RUN git config --global advice.detachedHead false && \ FROM $BUILD_FROM AS WEBSOCKIFY RUN apt-get update && apt-get -y --no-install-recommends install \ - git=1:2.35.1-1 \ - python3=3.10.5-3 \ - python3-setuptools=59.6.0-1.2 \ - python3-numpy=1:1.21.5-1+b1 \ - python3-pip=22.2+dfsg-1 + git=1:2.39.5-0+deb12u1 \ + python3=3.11.2-1+b1 \ + python3-setuptools=66.1.1-1 \ + python3-numpy=1:1.24.2-1+deb12u1 \ + python3-pip=23.0.1+dfsg-1 -RUN pip3 install --no-cache-dir Cython==0.29.32 +RUN pip3 install --break-system-packages --no-cache-dir Cython==0.29.32 # hadolint ignore=DL3003 RUN git config --global advice.detachedHead false && \ @@ -26,16 +26,16 @@ RUN git config --global advice.detachedHead false && \ FROM $BUILD_FROM AS RUNNING RUN apt-get update && apt-get -y --no-install-recommends install \ - git=1:2.35.1-1 \ - python3=3.10.5-3 \ - python3-setuptools=59.6.0-1.2 \ - python3-numpy=1:1.21.5-1+b1 \ - procps=2:3.3.17-7+b1 \ + git=1:2.39.5-0+deb12u1 \ + python3=3.11.2-1+b1 \ + python3-setuptools=66.1.1-1 \ + python3-numpy=1:1.24.2-1+deb12u1 \ + procps=2:4.0.2-3 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* COPY --from=NO_VNC /noVNC /noVNC -COPY --from=WEBSOCKIFY /usr/local/lib/python3.10/dist-packages/ /usr/local/lib/python3.10/dist-packages/ +COPY --from=WEBSOCKIFY /usr/local/lib/python3.11/dist-packages/ /usr/local/lib/python3.11/dist-packages/ COPY --from=WEBSOCKIFY /usr/local/bin/websockify /usr/local/bin/websockify ENTRYPOINT [ "/init" ]