From 4fb3b1201f5010eb010ba121fa1eaa4ec434af7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Wed, 5 Apr 2023 22:22:00 +0200 Subject: [PATCH] update vncdotool to v1.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The latest stable version of vncdotool was just released 4 days ago; this commit bumps the container to use this version. Signed-off-by: Lucas Servén Marín --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 603e7c5..491e5a0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get install -y openssl ca-certificates libffi-dev build-essential libssl RUN python3 -m pip install numpy RUN apt-get remove --purge -y libffi-dev build-essential libssl-dev git rustc cargo RUN rm -rf /root/.cargo -ADD https://github.com/sibson/vncdotool/archive/8492abf347566c36f67ea368d70ddaabf931719b.tar.gz vncdotool.tar.gz +ADD https://github.com/sibson/vncdotool/archive/v1.1.0.tar.gz vncdotool.tar.gz RUN python3 -m pip install vncdotool.tar.gz FROM python:3.11-slim