-
What is the problem you're trying to solveUpdate the image Describe the solution you'd likeLink to the Dockerfile to be able to update the image (maybe I just need nerdctl?) Additional contextNo response |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
One missing thing in the image is |
Beta Was this translation helpful? Give feedback.
-
Yes, it just contains 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", "registry", "serve" ]
Thank you for the suggestion. |
Beta Was this translation helpful? Give feedback.
@aledbf
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