redpanda-console (sha256:e400db73f7e60bdc6a3db4fffc91be9d141d9b341b95a7f30b0708f457afa51e)
Published 2026-06-04 23:02:33 +00:00 by peterswimm
Installation
docker pull git.toilville.dev/peterswimm/redpanda-console@sha256:e400db73f7e60bdc6a3db4fffc91be9d141d9b341b95a7f30b0708f457afa51esha256:e400db73f7e60bdc6a3db4fffc91be9d141d9b341b95a7f30b0708f457afa51eImage layers
| ADD alpine-minirootfs-3.23.4-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| WORKDIR /app |
| RUN /bin/sh -c apk update && apk upgrade --no-cache && apk add --no-cache openssh curl # buildkit |
| RUN /bin/sh -c ssh-keyscan github.com >> /etc/ssh/ssh_known_hosts # buildkit |
| RUN /bin/sh -c addgroup -S redpandaconsole && adduser -S redpandaconsole -G redpandaconsole # buildkit |
| COPY /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ # buildkit |
| COPY /workspace/backend/bin/console /app/console # buildkit |
| USER redpandaconsole |
| ENTRYPOINT ["./console"] |