Skip to content

Commit

Permalink
Merge pull request #35 from dagrayvid/arch-dependent-packages
Browse files Browse the repository at this point in the history
Rearrange architecture check
  • Loading branch information
openshift-merge-robot committed Jun 18, 2021
2 parents 6dc3965 + 04ac749 commit 48b9891
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -44,7 +44,7 @@ RUN yum -y install git make \
&& yum clean all

# Packages needed to sign and run externally build kernel modules
RUN if [[ $(arch) == "x86_64" || $(arch) == "aarch64" ]]; then \
RUN if [ $(arch) == "x86_64" ] || [ $(arch) == "aarch64" ]; then \
ARCH_DEP_PKGS="mokutil"; fi \
&& yum -y install openssl keyutils $ARCH_DEP_PKGS \
&& yum clean all
Expand Down

0 comments on commit 48b9891

Please sign in to comment.