From 6821915702b2dc4cf15ca0a0ce2458dce34af81a Mon Sep 17 00:00:00 2001 From: qurious-pixel <62252937+qurious-pixel@users.noreply.github.com> Date: Wed, 22 Jul 2020 17:30:03 -0700 Subject: [PATCH] Update Dockerfile add apt transport --- linux-appimage/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/linux-appimage/Dockerfile b/linux-appimage/Dockerfile index 5798807..a13f53e 100644 --- a/linux-appimage/Dockerfile +++ b/linux-appimage/Dockerfile @@ -14,6 +14,8 @@ ENV GXX_BINARY=g++-${GCCVER} # Create a user account yuzu (UID 1027) that the container will run as RUN useradd -m -u 1027 -s /bin/bash yuzu && \ + apt-get update -y && \ + apt-get install -y curl software-properties-common apt-transport-https && \ add-apt-repository -y ppa:ubuntu-toolchain-r/test && \ DEBIAN_FRONTEND=noninteractive apt-get update && apt-get -y full-upgrade && \ DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \