Improve HAOS builder Dockerfile (#2011)

This commit is contained in:
Stefan Agner 2022-07-08 22:36:02 +02:00 committed by GitHub
parent 5932f1212e
commit 8f07d16176
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 22 deletions

View File

@ -1,12 +1,3 @@
# We don't need this folder because we map the hole folder # Ignore everything except what we really need
buildroot/ *
buildroot-external/ !scripts/
buildroot-patches/
# Output/Release directory gets created using build scripts
output*/
release/
# Ignore hidden directories as well
.git/
.github/

View File

@ -28,27 +28,24 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
cpio \ cpio \
file \ file \
git \ git \
graphviz \
jq \
make \ make \
ncurses-dev \ ncurses-dev \
openssh-client \
patch \ patch \
perl \ perl \
python3 \ python3 \
python3-matplotlib \ python3-matplotlib \
python-is-python3 \ python-is-python3 \
graphviz \ qemu-utils \
rsync \ rsync \
skopeo \
sudo \ sudo \
unzip \ unzip \
zip \
wget \
qemu-utils \
openssh-client \
vim \ vim \
&& rm -rf /var/lib/apt/lists/* wget \
zip \
RUN apt-get update && apt-get install -y --no-install-recommends \
skopeo \
jq \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# Init entry # Init entry