From b841f0b1a84d5f1039761b9c811110c3a856f030 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anna=20Christina=20Na=C3=9F?= Date: Thu, 9 Apr 2026 13:21:30 +0200 Subject: [PATCH] Dockerfile error --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e9fbea5..f26e528 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ FROM python RUN apt update && apt install -y jq && rm -rf /var/lib/apt/lists/* -RUN wget -P / $(curl https://api.github.com/repos/novnc/websockify/releases/latest | jq -r '.tarball_url') +RUN wget --content-disposition -P / $(curl https://api.github.com/repos/novnc/websockify/releases/latest | jq -r '.tarball_url') RUN python3 -m pip install novnc-websockify-*.tar.gz RUN rm -rf /novnc-websockify-* /root/.cache -RUN wget -P / https://github.com/rickparrish/fTelnet/archive/refs/heads/master.zip +RUN wget --content-disposition -P / https://github.com/rickparrish/fTelnet/archive/refs/heads/master.zip WORKDIR /web RUN unzip /fTelnet-master.zip &&\ cp fTelnet-master/release/ftelnet.css . &&\