GUACAMOLE-407: Use Debian (stable) instead of Ubuntu.

This commit is contained in:
Michael Jumper 2018-04-01 21:24:50 -07:00
parent 2e4fb5b91c
commit eb282e49d9

View File

@ -22,9 +22,9 @@
# #
# Use Ubuntu as base for the build # Use Debian as base for the build
ARG UBUNTU_VERSION=artful ARG DEBIAN_VERSION=stable
FROM ubuntu:${UBUNTU_VERSION} AS builder FROM debian:${DEBIAN_VERSION} AS builder
# Base directory for installed build artifacts. # Base directory for installed build artifacts.
# Due to limitations of the Docker image build process, this value is # Due to limitations of the Docker image build process, this value is
@ -40,7 +40,7 @@ ARG BUILD_DEPENDENCIES=" \
gcc \ gcc \
libcairo2-dev \ libcairo2-dev \
libfreerdp-dev \ libfreerdp-dev \
libjpeg-turbo8-dev \ libjpeg62-turbo-dev \
libossp-uuid-dev \ libossp-uuid-dev \
libpango1.0-dev \ libpango1.0-dev \
libpulse-dev \ libpulse-dev \
@ -76,8 +76,8 @@ RUN ${PREFIX_DIR}/bin/list-dependencies.sh \
${PREFIX_DIR}/lib/freerdp/guac*.so \ ${PREFIX_DIR}/lib/freerdp/guac*.so \
> ${PREFIX_DIR}/DEPENDENCIES > ${PREFIX_DIR}/DEPENDENCIES
# Use same Ubuntu as the base for the runtime image # Use same Debian as the base for the runtime image
FROM ubuntu:${UBUNTU_VERSION} FROM debian:${DEBIAN_VERSION}
# Base directory for installed build artifacts. # Base directory for installed build artifacts.
# Due to limitations of the Docker image build process, this value is # Due to limitations of the Docker image build process, this value is