Add rustc to all base images

This commit is contained in:
Anna Sirota
2021-03-16 18:00:34 +01:00
parent 2806244dd3
commit 6a04549b95
2 changed files with 2 additions and 1 deletions

View File

@@ -5,6 +5,6 @@ RUN set -ex; \
apt-get update; \ apt-get update; \
DEBIAN_FRONTEND=noninteractive apt-get install \ DEBIAN_FRONTEND=noninteractive apt-get install \
-qyy -o APT::Install-Recommends=false -o APT::Install-Suggests=false \ -qyy -o APT::Install-Recommends=false -o APT::Install-Suggests=false \
tzdata openssl ca-certificates locales; \ tzdata openssl ca-certificates locales rustc; \
locale-gen en_US.UTF-8 en_GB.UTF-8 nl_NL.UTF-8 locale-gen en_US.UTF-8 en_GB.UTF-8 nl_NL.UTF-8
ENV LANG en_US.UTF-8 ENV LANG en_US.UTF-8

View File

@@ -5,6 +5,7 @@ RUN set -ex; \
apt-get update; \ apt-get update; \
DEBIAN_FRONTEND=noninteractive apt-get install -qy \ DEBIAN_FRONTEND=noninteractive apt-get install -qy \
git \ git \
rustc \
build-essential \ build-essential \
checkinstall \ checkinstall \
libffi-dev \ libffi-dev \