From 9fc4f0f0b226931c31f45c21f2e9274eaab5dafd Mon Sep 17 00:00:00 2001 From: macmacs Date: Thu, 25 Aug 2016 21:53:50 +0200 Subject: [PATCH] Fix for "PTY is not supported." error Description: https://github.com/c9/core/issues/331 --- cloud9/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud9/Dockerfile b/cloud9/Dockerfile index a59826b..539e2c6 100644 --- a/cloud9/Dockerfile +++ b/cloud9/Dockerfile @@ -7,7 +7,7 @@ MAINTAINER Antoine GIRARD RUN buildDeps='make build-essential g++ gcc python2.7' && softDeps="git" \ && apt-get update && apt-get upgrade -y \ - && apt-get install -y $buildDeps $softDeps --no-install-recommends \ + && apt-get install -y tmux $buildDeps $softDeps --no-install-recommends \ && npm install -g forever && npm cache clean \ && git clone https://github.com/c9/core.git /cloud9 && cd /cloud9 \ && scripts/install-sdk.sh \