mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
modify the dockerfile to make sure it was built successfully
This commit is contained in:
parent
49b1ba5bbf
commit
e9790c030e
|
@ -3,11 +3,11 @@ FROM progrium/busybox
|
||||||
WORKDIR /opt/weed
|
WORKDIR /opt/weed
|
||||||
|
|
||||||
RUN opkg-install curl
|
RUN opkg-install curl
|
||||||
RUN echo insecure >> ~/.curlrc
|
RUN echo tlsv1 >> ~/.curlrc
|
||||||
|
|
||||||
RUN \
|
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/ && \
|
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
|
chmod +x ./bin/weed
|
||||||
|
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|
Loading…
Reference in a new issue