aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChengLei Shao <chareice@live.com>2016-08-10 16:11:00 +0800
committerGitHub <noreply@github.com>2016-08-10 16:11:00 +0800
commita3c8235f867bb79214083e168912935c90b4fe4a (patch)
tree12602ecc9316f90c5025ca843c6759d18d961b79
parentfa8198f44b63db436dc0ba0b431aa96104664e7a (diff)
downloadseaweedfs-a3c8235f867bb79214083e168912935c90b4fe4a.tar.xz
seaweedfs-a3c8235f867bb79214083e168912935c90b4fe4a.zip
Make Docker build works correctly
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index b2291c15f..e87538fdb 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -7,7 +7,7 @@ RUN echo tlsv1 >> ~/.curlrc
RUN \
curl -Lks https://bintray.com$(curl -Lk http://bintray.com/chrislusf/seaweedfs/seaweedfs/_latestVersion | grep linux_amd64.tar.gz | sed -n "/href/ s/.*href=['\"]\([^'\"]*\)['\"].*/\1/gp") | gunzip | tar -xf - -C /opt/weed/ && \
- mkdir ./bin && mv weed_*/* ./bin && \
+ mkdir ./bin && mv ./*/* ./bin && \
chmod +x ./bin/weed
EXPOSE 8080