Dockerfile 720 B

123456789101112131415161718
  1. FROM frolvlad/alpine-glibc:alpine-3.5
  2. # Tried to use curl only (curl -o /tmp/linux_amd64.tar.gz ...), however it turned out that the following tar command failed with "gzip: stdin: not in gzip format"
  3. RUN apk add --no-cache --virtual build-dependencies --update wget curl ca-certificates && \
  4. wget -P /tmp https://github.com/$(curl -s -L https://github.com/chrislusf/seaweedfs/releases/latest | egrep -o 'chrislusf/seaweedfs/releases/download/.*/linux_amd64.tar.gz') && \
  5. tar -C /usr/bin/ -xzvf /tmp/linux_amd64.tar.gz && \
  6. apk del build-dependencies && \
  7. rm -rf /tmp/*
  8. EXPOSE 8080
  9. EXPOSE 9333
  10. VOLUME /data
  11. COPY entrypoint.sh /entrypoint.sh
  12. RUN chmod +x /entrypoint.sh
  13. ENTRYPOINT ["/entrypoint.sh"]