File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
ARG ALPINE_BASE_IMAGE=latest
2
2
FROM alpine:${ALPINE_BASE_IMAGE} AS builder
3
3
4
- ARG VERSION="1.5.3 "
4
+ ARG VERSION="1.5.4 "
5
5
ARG TARGETPLATFORM
6
6
7
7
ENV \
@@ -32,7 +32,7 @@ RUN apk add --no-cache \
32
32
libxkbfile-dev \
33
33
make \
34
34
openh264-dev \
35
- openssl1.1-compat- dev \
35
+ openssl- dev \
36
36
pango-dev \
37
37
pcsc-lite-dev \
38
38
pulseaudio-dev \
@@ -161,7 +161,7 @@ ARG BUILD_RFC3339="2023-04-04T13:00:00Z"
161
161
ARG REVISION="local"
162
162
ARG DESCRIPTION="Fully Packaged and Multi-Arch Guacamole container"
163
163
ARG PACKAGE="flcontainers/guacamole"
164
- ARG VERSION="1.5.3 "
164
+ ARG VERSION="1.5.4 "
165
165
ARG POSTGRES_HOST_AUTH_METHOD="trust"
166
166
167
167
LABEL org.opencontainers.image.ref.name="${PACKAGE}" \
@@ -180,6 +180,7 @@ ENV \
180
180
GUACAMOLE_HOME=/app/guacamole \
181
181
CATALINA_HOME=/opt/tomcat \
182
182
PG_MAJOR=13 \
183
+ TOMCAT_VER=9.0.83 \
183
184
PGDATA=/config/postgres \
184
185
POSTGRES_USER=guacamole \
185
186
POSTGRES_DB=guacamole_db \
@@ -222,8 +223,8 @@ RUN apk add --no-cache -X https://dl-cdn.alpinelinux.org/alpine/edge/testing gos
222
223
223
224
# Install tomcat
224
225
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
227
228
RUN chmod +x /opt/tomcat/bin/*.sh
228
229
229
230
RUN groupadd tomcat && \
You can’t perform that action at this time.
0 commit comments