diff options
author | 2022-07-25 09:36:33 +0200 | |
---|---|---|
committer | 2022-07-25 00:36:33 -0700 | |
commit | 285b47ff36abc7bb185b13c565fd86f282c8ae9d (patch) | |
tree | d9732c95a6203a5ea415785aeed045062f8fae93 /dockerhub | |
parent | 0a113d7f0cb25ec17d5235fb193d46ef5234f05b (diff) | |
download | bun-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/Dockerfile | 4 |
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 |