diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2021-05-06 11:26:53 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2021-05-06 11:26:53 +0200 |
commit | a4dea3939b0a3412951580bc8ee80166630baaa8 (patch) | |
tree | b8f605e549099ab801571dff68160f1fb1e9070d | |
parent | f5a1ad71d1c711fa3a46124ba027c39b7902f97c (diff) | |
download | rpm-package-builder-a4dea3939b0a3412951580bc8ee80166630baaa8.tar.gz |
fix stream update
-rw-r--r-- | Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ FROM registry.centos.org/centos:8 -ENV SUMMARY="CentOS 8 builder" \ - DESCRIPTION="CentOS 8 image for test builds and rpm package builds." +ENV SUMMARY="CentOS Stream 8 builder" \ + DESCRIPTION="CentOS Stream 8 image for test builds and rpm package builds." LABEL maintainer="Gerd Hoffmann <kraxel@redhat.com>" \ summary="${SUMMARY}" \ @@ -11,7 +11,7 @@ USER root COPY configure-mirror /usr/local/bin RUN /usr/local/bin/configure-mirror && \ - dnf install -y centos-release-stream && \ + dnf install -y --allowerasing centos-release-stream && \ dnf update -y && \ dnf install -y \ 'dnf-command(builddep)' \ |