diff --git a/Dockerfile.solution.rhel-8.0.0 b/Dockerfile.solution.rhel-8.0.0 index 6eaeda3..5857ba4 100644 --- a/Dockerfile.solution.rhel-8.0.0 +++ b/Dockerfile.solution.rhel-8.0.0 @@ -176,7 +176,7 @@ RUN dnf clean all \ RUN { \ echo "[intel-graphics]" ; \ echo "name=Intel Graphics Drivers Repository" ; \ - echo "baseurl=https://osgc.jf.intel.com/graphics/rhel/8.0-devel/" ; \ + echo "baseurl=https://osgc.jf.intel.com/internal/rhel/8.0/" ; \ echo "sslverify=0" ; \ echo "enabled=1" ; \ echo "gpgcheck=0" ; \ diff --git a/README.rhel-8.0.0 b/README.rhel-8.0.0 index 932534d..69eb604 100644 --- a/README.rhel-8.0.0 +++ b/README.rhel-8.0.0 @@ -4,11 +4,18 @@ The Red Hat image isn't using the templates/* -- it was built as a POC to verify that our repositories are working correctly for Red Hat. ```bash +TAG=test-build-rhel-8.0.0-$(date +%Y%m%d) export $(grep ^FFMPEG SOLUTION) envsubst < Dockerfile.solution.rhel-8.0.0 > Dockerfile.rhel-8.0.0 -docker build . -f Dockerfile.rhel-8.0.0 -t intel-media-ffmpeg:rhel-8.0.0 +docker build -f Dockerfile.rhel-8.0.0 -t intel-media-ffmpeg:${TAG} --no-cache . ``` +# To push the tag to Harbor +```bash +TAG=test-build-rhel-8.0.0-$(date +%Y%m%d) +docker tag intel-media-ffmpeg:${TAG} amr-registry.caas.intel.com/vtt-osgc/solutions/intel-media-ffmpeg:${TAG} +docker push amr-registry.caas.intel.com/vtt-osgc/solutions/intel-media-ffmpeg:${TAG} +``` # In a custom image...