Closed Auggie321 closed 1 year ago
I understand that using make build does not solve the problem of the minideb underlying debian image vulnerability. Of course this is not the point, although make build is not executable, in fact, want to see minideb's dockerfile, after making a new debian image. Refer to minideb's dockerfile used to introduce from debian-fixed images, using a multi-stage production image to fix the debian-minideb vulnerability problem
Hi,
Could you add more details on the errors you found? Did you follow this section of the readme? https://github.com/bitnami/minideb#building-minideb
Hi,
The compilation issue posted above is probably not the key,and can actually be ignored. Used the linked hub.docker.com/bitnami/minideb latest image. will sweep out the underlying vulnerabilities in debian.
I'm just not sure about the contents of minideb's Dockerfile, not sure how my Dockerfile internally references minideb's copyfile, which xxx should be add.
new Dockerfile
FROM bitnami/minideb:bullseye as baseimage
FROM debian11-patch:self
COPY --from=baseimage xxx
RUN xxx
I understand if minideb's Dockerfile is not available. If i want to handle vulnerability fixes, could do so with docker run -it --rm bitnami/minideb:latest fix issues then docker commit; but it's a bit more complicated. I think it would be better to go through Dockerfile. May I ask if you have any better suggestions.
sir,
may i ask you about some image build issues ? I checked minideb readme security, wanna fix debian vulnerabilities, mini base from debian, where can I be allowed to get the full dockefile of minideb ? wanna build it by self.
server env
cd $GOPATH git clone https://github.com/bitnami/minideb.git cd minideb make build, got some error
If i could get the minideb dockerfile, then bypass the makefile file and build the image directly.