From 285b47ff36abc7bb185b13c565fd86f282c8ae9d Mon Sep 17 00:00:00 2001 From: mikeswann Date: Mon, 25 Jul 2022 09:36:33 +0200 Subject: [PATCH] Use 'ADD' instead of running wget to make docker compare checksums on bun's latest file (#864) --- dockerhub/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerhub/Dockerfile b/dockerhub/Dockerfile index 392e7e022f..7443e8bac7 100644 --- a/dockerhub/Dockerfile +++ b/dockerhub/Dockerfile @@ -10,8 +10,8 @@ WORKDIR /tmp RUN apk --no-cache add unzip # get bun -RUN wget https://github.com/oven-sh/bun/releases/latest/download/bun-linux-x64.zip && \ - unzip bun-linux-x64.zip +ADD https://github.com/oven-sh/bun/releases/latest/download/bun-linux-x64.zip +RUN unzip bun-linux-x64.zip # get glibc ARG GLIBC_RELEASE