From f3c25f6e62f971f28a7e8d6c4e906569c22cdf95 Mon Sep 17 00:00:00 2001 From: Joshua Lancaster Date: Fri, 30 Sep 2022 07:21:25 -0700 Subject: [PATCH] GUACAMOLE-1628: Docker image of guacamole client is missing unzip --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 438635e18..586cf4136 100644 --- a/Dockerfile +++ b/Dockerfile @@ -55,10 +55,10 @@ RUN /opt/guacamole/bin/build-guacamole.sh "$BUILD_DIR" /opt/guacamole # For the runtime image, we start with the official Tomcat distribution FROM tomcat:${TOMCAT_VERSION}-${TOMCAT_JRE} -# Install XMLStarlet for server.xml alterations +# Install XMLStarlet for server.xml alterations and unzip for LOGBACK_LEVEL case RUN apt-get update -qq \ - && apt-get install -y xmlstarlet \ - && rm -rf /var/lib/apt/lists/* + && apt-get install -y xmlstarlet unzip\ + && rm -rf /var/lib/apt/lists/* # This is where the build artifacts go in the runtime image WORKDIR /opt/guacamole