drone-ipfs-cluster/Dockerfile

15 lines
453 B
Docker
Raw Normal View History

2023-02-02 22:38:11 -05:00
FROM node:lts
2023-01-02 22:35:10 -05:00
2023-01-29 13:16:33 -05:00
ENV CLUSTER_VERSION v1.0.5
2023-01-02 22:35:10 -05:00
ENV CLUSTER_TAR ipfs-cluster-ctl_${CLUSTER_VERSION}_linux-amd64.tar.gz
RUN set -x \
&& wget "https://dist.ipfs.io/ipfs-cluster-ctl/$CLUSTER_VERSION/$CLUSTER_TAR" \
&& tar -xzf "$CLUSTER_TAR" --strip-components=1 ipfs-cluster-ctl/ipfs-cluster-ctl \
&& mv ipfs-cluster-ctl /usr/local/bin
2023-01-22 17:33:31 -05:00
RUN npm install --global dnslink-cloudflare
2023-01-02 22:35:10 -05:00
ADD pin.sh /usr/local/bin/pin.sh
ENTRYPOINT [ "/usr/local/bin/pin.sh" ]