From 4c456c92cf4039422790c69a0faa047dc8a4c2a1 Mon Sep 17 00:00:00 2001 From: manx52 Date: Fri, 4 Oct 2024 18:40:29 -0400 Subject: [PATCH] fixed --- external/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/external/Dockerfile b/external/Dockerfile index 82e9ce8cb..c8e095379 100644 --- a/external/Dockerfile +++ b/external/Dockerfile @@ -38,9 +38,9 @@ RUN apt update && apt-fast install -y \ RUN pip3 install transforms3d ARG WEBOTS_VERSION="2022b" -ARG WEBOTS_DOWNLOAD_URL="https://github.com/cyberbotics/webots/releases/download/R${WEBOTS_VERSION}/webots_${WEBOTS_VERSION}_amd64.deb" +ARG WEBOTS_DOWNLOAD_URL="https://github.com/cyberbotics/webots/releases/download/R$WEBOTS_VERSION/webots_$WEBOTS_VERSION_amd64.deb" -RUN wget --no-verbose --show-progress "$WEBOTS_DOWNLOAD_URL" -O "/tmp/webots_${WEBOTS_VERSION}.deb" && sudo apt-get install "/tmp/webots_${WEBOTS_VERSION}.deb" -y +RUN wget --no-verbose --show-progress "$WEBOTS_DOWNLOAD_URL" -O "/tmp/webots_$WEBOTS_VERSION.deb" && sudo apt-get install "/tmp/webots_$WEBOTS_VERSION.deb" -y ENV WEBOTS_HOME /usr/local/webots RUN echo "export WEBOTS_HOME=/usr/local/webots" >> ~/.bashrc