1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-08 18:16:50 +02:00

Merge pull request #138 from carmark/master

modify the dockerfile to make sure it was built successfully
This commit is contained in:
chrislusf 2015-05-07 05:11:32 -07:00
commit 98d4adbb8a

View file

@ -3,11 +3,11 @@ FROM progrium/busybox
WORKDIR /opt/weed
RUN opkg-install curl
RUN echo insecure >> ~/.curlrc
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/ && \
mv weed_*/* /bin && \
mkdir ./bin && mv weed_*/* ./bin && \
chmod +x ./bin/weed
EXPOSE 8080