Skip to content
This repository has been archived by the owner on Nov 6, 2019. It is now read-only.

Commit

Permalink
Add a more recent version of node
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunk committed Jan 2, 2019
1 parent b8fb219 commit c32a847
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ MAINTAINER USU Software AG

RUN \
apt-get update && \
apt-get install -y -qq --no-install-recommends wget unzip python openssh-client python-openssl git-core jq curl vim nodejs-legacy && \
apt-get install -y -qq --no-install-recommends wget unzip python openssh-client python-openssl git-core jq curl vim gnupg2 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand All @@ -30,6 +30,10 @@ RUN curl -fsSLO https://download.docker.com/linux/static/stable/x86_64/docker-${
&& tar xzvf docker-${DOCKERVERSION}.tgz --strip 1 -C /usr/local/bin docker/docker \
&& rm docker-${DOCKERVERSION}.tgz

# Install node & npm
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -
RUN apt install -y nodejs && npm install -g [email protected]

RUN echo "Europe/Berlin" > /etc/timezone && dpkg-reconfigure -f noninteractive tzdata

CMD ["/bin/bash"]
Expand Down

0 comments on commit c32a847

Please sign in to comment.