Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions debian/bookworm-slim/hotspot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,15 @@ RUN apt-get update \
tzdata \
&& rm -rf /var/lib/apt/lists/*

RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh -o /tmp/script.deb.sh \
&& bash /tmp/script.deb.sh \
&& rm -f /tmp/script.deb.sh \
&& apt-get install -y --no-install-recommends \
git-lfs \
&& rm -rf /var/lib/apt/lists/* \
&& git lfs install
# Git LFS is not available from a package manager on all the platforms we support
# Download and unpack the tar.gz distribution
# hadolint ignore=SC2086,DL4006
RUN git_lfs_ver=3.6.0 \
&& arch=$(uname -m | sed -e 's/x86_64/amd64/g' -e 's/aarch64/arm64/g') \
&& curl -L -s -o git-lfs.tgz https://github.com/git-lfs/git-lfs/releases/download/v${git_lfs_ver}/git-lfs-linux-${arch}-v${git_lfs_ver}.tar.gz \
&& tar xzf git-lfs.tgz \
&& bash git-lfs-*/install.sh \
&& rm -rf git-lfs*

ENV LANG=C.UTF-8

Expand Down
16 changes: 9 additions & 7 deletions debian/bookworm/hotspot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,15 @@ RUN apt-get update \
tzdata \
&& rm -rf /var/lib/apt/lists/*

RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh -o /tmp/script.deb.sh \
&& bash /tmp/script.deb.sh \
&& rm -f /tmp/script.deb.sh \
&& apt-get install -y --no-install-recommends \
git-lfs \
&& rm -rf /var/lib/apt/lists/* \
&& git lfs install
# Git LFS is not available from a package manager on all the platforms we support
# Download and unpack the tar.gz distribution
# hadolint ignore=SC2086,DL4006
RUN git_lfs_ver=3.6.0 \
&& arch=$(uname -m | sed -e 's/x86_64/amd64/g' -e 's/aarch64/arm64/g') \
&& curl -L -s -o git-lfs.tgz https://github.com/git-lfs/git-lfs/releases/download/v${git_lfs_ver}/git-lfs-linux-${arch}-v${git_lfs_ver}.tar.gz \
&& tar xzf git-lfs.tgz \
&& bash git-lfs-*/install.sh \
&& rm -rf git-lfs*

ENV LANG=C.UTF-8

Expand Down