diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-08-16 18:47:42 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-08-16 18:47:46 -0700 |
| commit | d24ad925132667313e8d1810c1d3641b381ecbc6 (patch) | |
| tree | 4ddc6a16d8755229937ca4a9c5e29db812f24699 | |
| parent | 7bf65c1e991eeb71cffc3b63df0b8e9a24071b83 (diff) | |
| download | seaweedfs-d24ad925132667313e8d1810c1d3641b381ecbc6.tar.xz seaweedfs-d24ad925132667313e8d1810c1d3641b381ecbc6.zip | |
fix building latest docker image
| -rw-r--r-- | docker/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 2165466ca..cf8eac251 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -16,7 +16,7 @@ RUN \ # Install SeaweedFS and Supercronic ( for cron job mode ) apk add --no-cache --virtual build-dependencies --update wget curl ca-certificates && \ apk add fuse && \ - wget -P /tmp https://github.com/$(curl -s -L https://github.com/chrislusf/seaweedfs/releases/${RELEASE} | egrep -o "chrislusf/seaweedfs/releases/download/.*/linux_$ARCH.tar.gz") && \ + wget -P /tmp https://github.com/$(curl -s -L https://github.com/chrislusf/seaweedfs/releases/${RELEASE} | egrep -o "chrislusf/seaweedfs/releases/download/.*/linux_$ARCH.tar.gz" | head -n 1) && \ tar -C /usr/bin/ -xzvf /tmp/linux_$ARCH.tar.gz && \ curl -fsSLO "$SUPERCRONIC_URL" && \ echo "${SUPERCRONIC_SHA1SUM} ${SUPERCRONIC}" | sha1sum -c - && \ |
