Merge pull request #1107 from AndreMiras/feature/fix_docker_apt_caching
🐳 Fixes Docker apt cache missed
This commit is contained in:
commit
f700d80f79
1 changed files with 2 additions and 1 deletions
|
@ -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 \
|
||||
|
|
Loading…
Reference in a new issue