Sign inSign up

minervaprime/centos

By minervaprime

Updated about 8 years ago

This is a working yum image of centos 5.11 with gcc

Image
0

1.1K

minervaprime/centos repository overview

docker-centos image

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

Tag summary

Content type

Image

Digest

Size

117.5 MB

Last updated

about 8 years ago

docker pull minervaprime/centos:5.11-gcc