Skip to content

Commit

Permalink
Fix alpine dockerfile (#1915)
Browse files Browse the repository at this point in the history
  • Loading branch information
Itxaka authored Oct 11, 2023
1 parent 259ac68 commit 7001014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion images/Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ RUN apk --no-cache add \
#### Common to a Model ####
###############################################################
FROM common AS generic
RUN if [ ${TARGETARCH} != "arm64" ];then apk --no-cache add grub-bios; fi
RUN if [ "${TARGETARCH}" = "amd64" ];then apk --no-cache add grub-bios; fi
RUN apk --no-cache add \
bonding \
bridge \
Expand Down

0 comments on commit 7001014

Please sign in to comment.