diff options
author | 2022-09-21 12:13:21 +0530 | |
---|---|---|
committer | 2022-09-20 23:43:21 -0700 | |
commit | 26625f3e2a1868ba47b293aec68316a03ff2382c (patch) | |
tree | 9019470ee9ae9c1816838a83f97d95ff19bf48d6 | |
parent | e94e6d8d95061c8bdb07ce96bc836689f49aafdd (diff) | |
download | bun-26625f3e2a1868ba47b293aec68316a03ff2382c.tar.gz bun-26625f3e2a1868ba47b293aec68316a03ff2382c.tar.zst bun-26625f3e2a1868ba47b293aec68316a03ff2382c.zip |
fix: add destination to ADD command in Dockerfile (#1268)
Signed-off-by: Hemanth Krishna <hkpdev008@gmail.com>
Signed-off-by: Hemanth Krishna <hkpdev008@gmail.com>
-rw-r--r-- | dockerhub/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dockerhub/Dockerfile b/dockerhub/Dockerfile index 7443e8bac..e627217ea 100644 --- a/dockerhub/Dockerfile +++ b/dockerhub/Dockerfile @@ -10,7 +10,7 @@ WORKDIR /tmp RUN apk --no-cache add unzip # get bun -ADD https://github.com/oven-sh/bun/releases/latest/download/bun-linux-x64.zip +ADD https://github.com/oven-sh/bun/releases/latest/download/bun-linux-x64.zip bun-linux-x64.zip RUN unzip bun-linux-x64.zip # get glibc |