Merge pull request #1107 from AndreMiras/feature/fix_docker_apt_caching

🐳 Fixes Docker apt cache missed
This commit is contained in:
Andre Miras 2020-05-17 13:54:14 +02:00 committed by GitHub
commit f700d80f79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,7 +42,8 @@ ENV LANG="en_US.UTF-8" \
LC_ALL="en_US.UTF-8"
# system requirements to build most of the recipes
RUN apt install -qq --yes --no-install-recommends \
RUN apt update -qq > /dev/null && \
apt install -qq --yes --no-install-recommends \
autoconf \
automake \
build-essential \