4 Commits

Author SHA1 Message Date
f6896583bc 5.0.15 2019-05-08 23:16:25 +02:00
05f367f131 fix(core): update 2019-05-08 23:16:25 +02:00
a2940e782a 5.0.14 2019-05-08 23:12:48 +02:00
1fab137c25 fix(core): update 2019-05-08 23:12:48 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ RUN su -c "echo 'debconf debconf/frontend select Noninteractive' | debconf-set-s
&& apt-get clean \ && apt-get clean \
&& rm -r /var/lib/apt/lists/*" && rm -r /var/lib/apt/lists/*"
RUN mkdir $NVM_DIR && sudo chown coder $NVM_DIR && chown u+w $NVM_DIR RUN mkdir $NVM_DIR && sudo chown coder $NVM_DIR && chmod u+w $NVM_DIR
USER coder USER coder
@@ -38,7 +38,7 @@ USER coder
RUN curl https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash RUN curl https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
RUN bash -c "source $NVM_DIR/nvm.sh \ RUN bash -c "source $NVM_DIR/nvm.sh \
&& nvm install $NODE_VERSION_LTS \ && nvm install $NODE_VERSION_LTS \
&& nvm alias default $NODE_VERSION_STABLE \ && nvm alias default $NODE_VERSION_LTS \
&& nvm use default \ && nvm use default \
&& npm config set unsafe-perm true \ && npm config set unsafe-perm true \
&& npm install -g npm" && npm install -g npm"

View File

@@ -1,6 +1,6 @@
{ {
"name": "ht-docker-vscode", "name": "ht-docker-vscode",
"version": "5.0.13", "version": "5.0.15",
"description": "a vscode image with everything installed needed to run a vscode instance", "description": "a vscode image with everything installed needed to run a vscode instance",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {