Skip to content

Commit 6da5aab

Browse files
authored
Merge pull request #104 from flcontainers/dev
Update to guacamole v1.5.4
2 parents a5bfc5d + 55366e0 commit 6da5aab

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Dockerfile

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG ALPINE_BASE_IMAGE=latest
22
FROM alpine:${ALPINE_BASE_IMAGE} AS builder
33

4-
ARG VERSION="1.5.3"
4+
ARG VERSION="1.5.4"
55
ARG TARGETPLATFORM
66

77
ENV \
@@ -32,7 +32,7 @@ RUN apk add --no-cache \
3232
libxkbfile-dev \
3333
make \
3434
openh264-dev \
35-
openssl1.1-compat-dev \
35+
openssl-dev \
3636
pango-dev \
3737
pcsc-lite-dev \
3838
pulseaudio-dev \
@@ -161,7 +161,7 @@ ARG BUILD_RFC3339="2023-04-04T13:00:00Z"
161161
ARG REVISION="local"
162162
ARG DESCRIPTION="Fully Packaged and Multi-Arch Guacamole container"
163163
ARG PACKAGE="flcontainers/guacamole"
164-
ARG VERSION="1.5.3"
164+
ARG VERSION="1.5.4"
165165
ARG POSTGRES_HOST_AUTH_METHOD="trust"
166166

167167
LABEL org.opencontainers.image.ref.name="${PACKAGE}" \
@@ -180,6 +180,7 @@ ENV \
180180
GUACAMOLE_HOME=/app/guacamole \
181181
CATALINA_HOME=/opt/tomcat \
182182
PG_MAJOR=13 \
183+
TOMCAT_VER=9.0.83 \
183184
PGDATA=/config/postgres \
184185
POSTGRES_USER=guacamole \
185186
POSTGRES_DB=guacamole_db \
@@ -222,8 +223,8 @@ RUN apk add --no-cache -X https://dl-cdn.alpinelinux.org/alpine/edge/testing gos
222223

223224
# Install tomcat
224225
RUN mkdir /opt/tomcat
225-
ADD https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.80/bin/apache-tomcat-9.0.80.tar.gz /tmp/
226-
RUN tar xvzf /tmp/apache-tomcat-9.0.80.tar.gz --strip-components 1 --directory /opt/tomcat
226+
ADD https://dlcdn.apache.org/tomcat/tomcat-9/v${TOMCAT_VER}/bin/apache-tomcat-${TOMCAT_VER}.tar.gz /tmp/
227+
RUN tar xvzf /tmp/apache-tomcat-${TOMCAT_VER}.tar.gz --strip-components 1 --directory /opt/tomcat
227228
RUN chmod +x /opt/tomcat/bin/*.sh
228229

229230
RUN groupadd tomcat && \

0 commit comments

Comments
 (0)