fixed typo, added bash to package list

这个提交包含在:
Jeffrey Paul 2019-01-23 16:26:12 +00:00
父节点 93e70acc93
当前提交 8a7a3766db
共有 2 个文件被更改,包括 2 次插入1 次删除

查看文件

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

查看文件

@ -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
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 use default'