From 0e746d98d9fcf1ffc51c7739a5a78c97a2428e08 Mon Sep 17 00:00:00 2001 From: Tim Nguyen Date: Fri, 16 Mar 2018 18:08:35 +0000 Subject: [PATCH] [ubuntu-dev] Set DISPLAY environment variable to :98 --- ubuntu-dev/ubuntu-dev.dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/ubuntu-dev/ubuntu-dev.dockerfile b/ubuntu-dev/ubuntu-dev.dockerfile index 0340f70..8df2e01 100644 --- a/ubuntu-dev/ubuntu-dev.dockerfile +++ b/ubuntu-dev/ubuntu-dev.dockerfile @@ -70,6 +70,7 @@ RUN __LLVM_VERSION__="6.0" \ ENV SHELL /bin/bash ENV CC clang-6.0 ENV CXX clang++-6.0 +ENV DISPLAY :98 # Disallow logging in to SSH with a password. RUN sed -ri "s/^[#\s]*PasswordAuthentication\s+[yn].*$/PasswordAuthentication no/" /etc/ssh/sshd_config \