Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
tabossert committed Nov 9, 2023
1 parent d9dc372 commit f9ccb8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dockerfiles/base-images:rocky9.2-8
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN dnf -y update && \
dnf -y upgrade && \
dnf -y install poppler-utils xz-devel wget tar make which mailcap dnf-plugins-core compat-openssl11 && \
if [[ "$(uname -m)" == "aarch64" ]]; then dnf -y install cuda-11-8; fi && \
ARCH=$(uname -m) && if [[ "$ARCH" == "x86_64" ] || [ "$ARCH" == "amd64" ]]; then dnf install cuda-11-8; fi && \
ARCH=$(uname -m) && if [[ "$ARCH" == "x86_64" ]] || [[ "$ARCH" == "amd64" ]]; then dnf install cuda-11-8; fi && \
dnf -y install epel-release && \
# This is a fix for an bug where config-manager tries to modify a repo file with the incorrect name
cp /etc/yum.repos.d/rocky-devel.repo /etc/yum.repos.d/Rocky-Devel.repo && \
Expand Down

0 comments on commit f9ccb8f

Please sign in to comment.