Unverified Commit d9fc2714 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

build: Declare extra variable (#730)

parent d1f1772d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -15,9 +15,9 @@ ARG DEBCONF_NOWARNINGS="yes"
ARG DEBIAN_FRONTEND="noninteractive"
ARG DEBCONF_NONINTERACTIVE_SEEN="true"

RUN set -eu && \
    apt-get update && \
RUN set -eu && extra="" && \
    if [ "$TARGETPLATFORM" != "linux/amd64" ]; then extra="qemu-user"; fi && \
    apt-get update && \
    apt-get --no-install-recommends -y install \
        jq \
        tini \