From fea36c49da53c09d04dabf75678afacfc35da0d2 Mon Sep 17 00:00:00 2001 From: Prasad Bandarkar Date: Fri, 25 Aug 2023 11:41:23 -0400 Subject: [PATCH] Adding /opt/code-server/bin to PATH --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0698085c..94577c20 100644 --- a/Dockerfile +++ b/Dockerfile @@ -72,7 +72,7 @@ ENV VS_CODE_VERSION=4.16.1 RUN mkdir /opt/code-server WORKDIR /opt/code-server RUN wget -qO- https://github.com/coder/code-server/releases/download/v${VS_CODE_VERSION}/code-server-${VS_CODE_VERSION}-linux-amd64.tar.gz | tar zxvf - --strip-components=1 -ENV PATH=/opt/code-server:$PATH +ENV PATH=/opt/code-server:/opt/code-server/bin:$PATH #------------ Install Lab Extensions in base environment as NB_USER----------------------------