From eb282e49d96c9398908147285744483c52447d1e Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sun, 1 Apr 2018 21:24:50 -0700 Subject: [PATCH] GUACAMOLE-407: Use Debian (stable) instead of Ubuntu. --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index a456b37a..ef9e0334 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,9 +22,9 @@ # -# Use Ubuntu as base for the build -ARG UBUNTU_VERSION=artful -FROM ubuntu:${UBUNTU_VERSION} AS builder +# Use Debian as base for the build +ARG DEBIAN_VERSION=stable +FROM debian:${DEBIAN_VERSION} AS builder # Base directory for installed build artifacts. # Due to limitations of the Docker image build process, this value is @@ -40,7 +40,7 @@ ARG BUILD_DEPENDENCIES=" \ gcc \ libcairo2-dev \ libfreerdp-dev \ - libjpeg-turbo8-dev \ + libjpeg62-turbo-dev \ libossp-uuid-dev \ libpango1.0-dev \ libpulse-dev \ @@ -76,8 +76,8 @@ RUN ${PREFIX_DIR}/bin/list-dependencies.sh \ ${PREFIX_DIR}/lib/freerdp/guac*.so \ > ${PREFIX_DIR}/DEPENDENCIES -# Use same Ubuntu as the base for the runtime image -FROM ubuntu:${UBUNTU_VERSION} +# Use same Debian as the base for the runtime image +FROM debian:${DEBIAN_VERSION} # Base directory for installed build artifacts. # Due to limitations of the Docker image build process, this value is