Skip to content

Commit

Permalink
Merge pull request #1 from Poeschl-HomeAssistant-Addons/update-depend…
Browse files Browse the repository at this point in the history
…ecies

⬆️ Multiple dependency updates :)
  • Loading branch information
Poeschl authored Sep 15, 2024
2 parents bb119f7 + c239d81 commit 7ee273a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .dive-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ rules:

# If the amount of wasted space is at least X or larger than X, mark as failed.
# Expressed in B, KB, MB, and GB.
highestWastedBytes: 20MB
#highestWastedBytes: 100MB

# If the amount of wasted space makes up for X% or more of the image, mark as failed.
# Note: the base image layer is NOT included in the total image size.
Expand Down
26 changes: 13 additions & 13 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ FROM $BUILD_FROM AS BUILD
ENV LANG C.UTF-8

RUN apt-get update && apt-get -y --no-install-recommends install \
git=1:2.35.1-1 \
npm=8.19.2~ds1-2 \
python3=3.10.6-1 \
libpixman-1-dev=0.40.0-1 \
libcairo2-dev=1.16.0-6 \
libpango1.0-dev=1.50.10+ds-1 \
git=1:2.39.5-0+deb12u1 \
npm=9.2.0~ds1-1 \
python3=3.11.2-1+b1 \
libpixman-1-dev=0.42.2-1 \
libcairo2-dev=1.16.0-7 \
libpango1.0-dev=1.50.12+ds-1 \
build-essential=12.9 \
libjpeg62-turbo-dev=1:2.1.2-1+b1
libjpeg62-turbo-dev=1:2.1.5-2

# Splited RUN for better layer caching
# hadolint ignore=DL3059
Expand All @@ -25,7 +25,7 @@ RUN npm install
FROM $BUILD_FROM AS SERVER

RUN apt-get update && apt-get -y --no-install-recommends install \
npm=8.19.2~ds1-2
npm=9.2.0~ds1-1

COPY root/server /server

Expand All @@ -36,11 +36,11 @@ RUN npm install
FROM $BUILD_FROM AS RUNNING

RUN apt-get update && apt-get -y --no-install-recommends install \
npm=8.19.2~ds1-2 \
libpixman-1-0=0.40.0-1 \
libcairo2=1.16.0-6 \
libpango-1.0-0=1.50.10+ds-1 \
libjpeg62-turbo=1:2.1.2-1+b1 \
npm=9.2.0~ds1-1 \
libpixman-1-0=0.42.2-1 \
libcairo2=1.16.0-7 \
libpango-1.0-0=1.50.12+ds-1 \
libjpeg62-turbo=1:2.1.5-2 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit 7ee273a

Please sign in to comment.