Skip to content

Question: where is located the Dockerfile of the nerdctl-ipfs-registry image? #962

Answered by ktock
aledbf asked this question in Q&A
Discussion options

You must be logged in to vote

@aledbf

Link to the Dockerfile to be able to update the image (maybe I just need nerdctl?)

Yes, it just contains nerdctl.
Dockerfile used to build that image is:

https://github.com/containerd/nerdctl/tree/v0.18.0/examples/nerdctl-ipfs-registry-kubernetes#example-dockerfile-of-nerdctl

FROM ubuntu:20.04
ARG NERDCTL_VERSION=0.16.0
RUN apt-get update -y && apt-get install -y curl && \
    curl -sSL --output /tmp/nerdctl.tgz https://github.com/containerd/nerdctl/releases/download/v${NERDCTL_VERSION}/nerdctl-${NERDCTL_VERSION}-linux-${TARGETARCH:-amd64}.tar.gz && \
    tar zxvf /tmp/nerdctl.tgz -C /usr/local/bin/ && \
    rm /tmp/nerdctl.tgz
ENTRYPOINT [ "/usr/local/bin/nerdctl", "ipfs", "reg…

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@aledbf
Comment options

Answer selected by aledbf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
question Further information is requested area/ipfs IPFS
2 participants
Converted from issue

This discussion was converted from issue #961 on April 05, 2022 14:15.