fixed typo, added bash to package list

This commit is contained in:
Jeffrey Paul 2019-01-23 16:26:12 +00:00
parent 93e70acc93
commit 8a7a3766db
2 changed files with 2 additions and 1 deletions

View File

@ -18,6 +18,7 @@ apt update && apt upgrade -y
PKGS=" PKGS="
apt-file apt-file
apt-utils apt-utils
bash
bash-completion bash-completion
build-essential build-essential
byobu byobu

View File

@ -35,7 +35,7 @@ RUN dpkg -i /tmp/atom.deb && rm /tmp/atom.deb
######################################################## ########################################################
RUN git clone https://github.com/creationix/nvm.git /usr/local/nvm RUN git clone https://github.com/creationix/nvm.git /usr/local/nvm
ADD ./nvmsetup.sh /etc/profile.d/nvmsetup.sh ADD ./nvmsetup.sh /etc/profile.d/nvmsetup.sh
RUN \ bash -c 'source /etc/profile.d/nvmsetup.sh && \ RUN bash -c 'source /etc/profile.d/nvmsetup.sh && \
nvm install --lts && \ nvm install --lts && \
nvm use default' nvm use default'