I'm trying to dockerise our system and I'm doing it step by step with 2 servers.
In one I have docker (running on a centos7 server) and in the internal dev VM (running Centos8) I'm installing the same software as in the Dockerfile.
I'm trying to install Apache in HTTP2 and by this guide if I run sudo yum install @httpd
it should install apache with HTTP2 module, though in the Docker image I cannot install it. Any ideas?
if I connect to the docker container and I run yum install httpd
say that is already installed and with yum install @hhtpd
it say group httpd not found
the version installed in the official image doesn't have the http2 module
I'm using FROM centos:8
in the dockerfile
this is my Dockerfile
FROM centos:8
RUN yum -y update && yum -y install gzip libjpeg-devel libtiff-devel libpng-devel \
freetype-devel httpd-devel byacc flex ksh sysstat sqlite-devel libjpeg \
sqlite-devel cmake pixman pixman-devel gcc gcc-c++ curl-devel gd-devel \
giflib-devel libxml2-devel automake autoconf libtool make wget zip unzip @httpd
...
continue