This is a working yum image of centos 5.11 with gcc
1.1K
This is a working yum image of centos 5.11 which is EOL, can be graet for multistage builds for compiling source code and copy to a clean iamge
Example:
FROM minervaprime/centos:5.11-gcc AS Builder
COPY . /usr/src/app
RUN make
FROM centos:5.11
COPY --from=Builder /usr/src/app/artifact /usr/local/bin/
CMD [ "/usr/local/bin/artifact" ]
Docker image location: https://cloud.docker.com/swarm/minervaprime/repository/registry-1.docker.io/minervaprime/centos/general
Content type
Image
Digest
Size
117.5 MB
Last updated
about 8 years ago
docker pull minervaprime/centos:5.11-gcc