This image is used for testing different compiler version against your code. With Fedora, it is difficult to run multiple compiler versions side-by-side. Fedora27 provides for gcc7.3.1 and clang5.0.2.
Dockerfile:
# Based on the Fedora image
FROM fedora:27
# install main packages:
RUN dnf -y update && dnf clean all
RUN dnf -y install gcc-c++ && dnf clean all
RUN dnf -y install clang && dnf clean all
# start services:
CMD ["sleep", "1000"]
Content type
Image
Digest
Size
197.4 MB
Last updated
about 7 years ago
docker pull yuvalif/fedora-compilers