fix(ubuntu): wrong apt-get use

This commit is contained in:
Tine Jozelj 2020-12-24 12:41:12 +01:00
parent 28ae807b54
commit 00c0a5c289
No known key found for this signature in database
GPG key ID: 3818B74E3830D7CF

View file

@ -30,11 +30,12 @@ RUN set -ueox pipefail \
# Install available packages
RUN set -ueox pipefail \
&& DEBIAN_FRONTEND=noninteractive \
&& apt-get -yqq update \
&& apt-get -yqq --no-install-recommends --no-install-suggests install \
&& git \
&& tmux \
&& vim \
&& zsh \
git \
tmux \
vim \
zsh \
&& apt-get -yqq clean all \
&& rm -rf /var/lib/apt/lists/* \
/tmp/* \