Skip to content

Commit

Permalink
Relates to #44 - Fix stable Docker images
Browse files Browse the repository at this point in the history
Stable Docker images (ones built from git-tags, previously from `main`)
were failing due to the Zypper GPG checks. The GPG checks do not have
the public key from our repository necessary for accepting signed RPMs.

This bypasses those checks, allowing stable Docker builds to work.
  • Loading branch information
rustydb committed Nov 2, 2022
1 parent ac07806 commit 966d476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN mkdir /files
COPY dist/rpmbuild/RPMS/x86_64/ /files

RUN ls -l /files && \
zypper -n in --allow-unsigned-rpm -y /files/canu*.rpm
zypper --no-gpg-checks -n in --allow-unsigned-rpm --auto-agree-with-licenses -y /files/canu*.rpm

# set file perms for canu
RUN chown -R canu /files /home
Expand Down

0 comments on commit 966d476

Please sign in to comment.