From 6a3fe53767cbf2b756c8c37b88a076e953b526b3 Mon Sep 17 00:00:00 2001 From: oznu Date: Sat, 6 Feb 2021 21:16:00 +1100 Subject: [PATCH] Guacamole 1.3 --- Dockerfile | 4 ++-- Dockerfile.raspberry-pi | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 29a6646..b702875 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM library/tomcat:9-jre11 ENV ARCH=amd64 \ - GUAC_VER=1.2.0 \ + GUAC_VER=1.3.0 \ GUACAMOLE_HOME=/app/guacamole \ PG_MAJOR=9.6 \ PGDATA=/config/postgres \ @@ -38,7 +38,7 @@ RUN [ "$ARCH" = "amd64" ] && ln -s /usr/local/lib/freerdp /usr/lib/x86_64-linux- RUN curl -SLO "http://apache.org/dyn/closer.cgi?action=download&filename=guacamole/${GUAC_VER}/source/guacamole-server-${GUAC_VER}.tar.gz" \ && tar -xzf guacamole-server-${GUAC_VER}.tar.gz \ && cd guacamole-server-${GUAC_VER} \ - && ./configure \ + && ./configure --enable-allow-freerdp-snapshots \ && make -j$(getconf _NPROCESSORS_ONLN) \ && make install \ && cd .. \ diff --git a/Dockerfile.raspberry-pi b/Dockerfile.raspberry-pi index 839912f..16953d1 100644 --- a/Dockerfile.raspberry-pi +++ b/Dockerfile.raspberry-pi @@ -1,7 +1,7 @@ FROM arm32v5/tomcat:9-jre11 ENV ARCH=armhf \ - GUAC_VER=1.2.0 \ + GUAC_VER=1.3.0 \ GUACAMOLE_HOME=/app/guacamole \ PG_MAJOR=9.6 \ PGDATA=/config/postgres \ @@ -38,7 +38,7 @@ RUN [ "$ARCH" = "amd64" ] && ln -s /usr/local/lib/freerdp /usr/lib/x86_64-linux- RUN curl -SLO "http://apache.org/dyn/closer.cgi?action=download&filename=guacamole/${GUAC_VER}/source/guacamole-server-${GUAC_VER}.tar.gz" \ && tar -xzf guacamole-server-${GUAC_VER}.tar.gz \ && cd guacamole-server-${GUAC_VER} \ - && ./configure \ + && ./configure --enable-allow-freerdp-snapshots \ && make -j$(getconf _NPROCESSORS_ONLN) \ && make install \ && cd .. \