mirror of
https://github.com/mentos1386/dotfiles.git
synced 2024-11-29 18:41:19 +00:00
fix(ubuntu): wrong apt-get use
This commit is contained in:
parent
28ae807b54
commit
00c0a5c289
1 changed files with 5 additions and 4 deletions
|
@ -30,11 +30,12 @@ RUN set -ueox pipefail \
|
||||||
# Install available packages
|
# Install available packages
|
||||||
RUN set -ueox pipefail \
|
RUN set -ueox pipefail \
|
||||||
&& DEBIAN_FRONTEND=noninteractive \
|
&& DEBIAN_FRONTEND=noninteractive \
|
||||||
|
&& apt-get -yqq update \
|
||||||
&& apt-get -yqq --no-install-recommends --no-install-suggests install \
|
&& apt-get -yqq --no-install-recommends --no-install-suggests install \
|
||||||
&& git \
|
git \
|
||||||
&& tmux \
|
tmux \
|
||||||
&& vim \
|
vim \
|
||||||
&& zsh \
|
zsh \
|
||||||
&& apt-get -yqq clean all \
|
&& apt-get -yqq clean all \
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
/tmp/* \
|
/tmp/* \
|
||||||
|
|
Loading…
Reference in a new issue