GUACAMOLE-1807: Add Docker build arguments for JDBC driver versions.

This commit is contained in:
Mike Jumper
2023-07-10 11:11:57 -07:00
parent 2149887d0c
commit 6884e780da
2 changed files with 10 additions and 10 deletions

View File

@@ -50,6 +50,11 @@ RUN apt-get update && apt-get install -y firefox
# as well: `--build-arg MAVEN_ARGUMENTS="-P lgpl-extensions -DskipTests=false"`.
ARG MAVEN_ARGUMENTS="-DskipTests=false"
# Versions of JDBC drivers to bundle within image
ARG MSSQL_JDBC_VERSION=12.2.0
ARG MYSQL_JDBC_VERSION=8.0.32
ARG PGSQL_JDBC_VERSION=42.3.8
# Build environment variables
ENV \
BUILD_DIR=/tmp/guacamole-docker-BUILD