This repository has been archived by the owner on Nov 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/* | ||
|
||
|
@@ -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"] | ||
|