aboutsummaryrefslogtreecommitdiff
path: root/dockerhub
diff options
context:
space:
mode:
authorGravatar mikeswann <mike.swann@hotmail.com> 2022-07-25 09:36:33 +0200
committerGravatar GitHub <noreply@github.com> 2022-07-25 00:36:33 -0700
commit285b47ff36abc7bb185b13c565fd86f282c8ae9d (patch)
treed9732c95a6203a5ea415785aeed045062f8fae93 /dockerhub
parent0a113d7f0cb25ec17d5235fb193d46ef5234f05b (diff)
downloadbun-285b47ff36abc7bb185b13c565fd86f282c8ae9d.tar.gz
bun-285b47ff36abc7bb185b13c565fd86f282c8ae9d.tar.zst
bun-285b47ff36abc7bb185b13c565fd86f282c8ae9d.zip
Use 'ADD' instead of running wget to make docker compare checksums on bun's latest file (#864)
Diffstat (limited to 'dockerhub')
-rw-r--r--dockerhub/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/dockerhub/Dockerfile b/dockerhub/Dockerfile
index 392e7e022..7443e8bac 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