diff --git a/images/dockerfile-full-alpine b/images/dockerfile-full-alpine index 179cf5b..c55d28f 100644 --- a/images/dockerfile-full-alpine +++ b/images/dockerfile-full-alpine @@ -79,7 +79,7 @@ RUN case ${TARGETPLATFORM} in \ *) ARCHITECTURE=amd64 ;; \ esac \ && echo "Installing opa (${ARCHITECTURE})" \ - && curl -L -o opa https://openpolicyagent.org/downloads/latest/opa_linux_${ARCHITECTURE}_static \ + && wget -O opa https://openpolicyagent.org/downloads/latest/opa_linux_${ARCHITECTURE}_static \ && chmod +x opa \ && mv opa /usr/local/bin/opa diff --git a/images/dockerfile-full-ubuntu b/images/dockerfile-full-ubuntu index 5418a02..803e062 100644 --- a/images/dockerfile-full-ubuntu +++ b/images/dockerfile-full-ubuntu @@ -83,7 +83,7 @@ RUN case ${TARGETPLATFORM} in \ *) ARCHITECTURE=amd64 ;; \ esac \ && echo "Installing opa (${ARCHITECTURE})" \ - && curl -L -o opa https://openpolicyagent.org/downloads/latest/opa_linux_${ARCHITECTURE}_static \ + && wget -O opa https://openpolicyagent.org/downloads/latest/opa_linux_${ARCHITECTURE}_static \ && chmod +x opa \ && mv opa /usr/local/bin/opa diff --git a/images/dockerfile-standard-alpine b/images/dockerfile-standard-alpine index f613af2..532d45a 100644 --- a/images/dockerfile-standard-alpine +++ b/images/dockerfile-standard-alpine @@ -70,6 +70,6 @@ RUN case ${TARGETPLATFORM} in \ *) ARCHITECTURE=amd64 ;; \ esac \ && echo "Installing opa (${ARCHITECTURE})" \ - && curl -L -o opa https://openpolicyagent.org/downloads/latest/opa_linux_${ARCHITECTURE}_static \ + && wget -O opa https://openpolicyagent.org/downloads/latest/opa_linux_${ARCHITECTURE}_static \ && chmod +x opa \ && mv opa /usr/local/bin/opa \ No newline at end of file diff --git a/images/dockerfile-standard-ubuntu b/images/dockerfile-standard-ubuntu index 9061737..59ab9ce 100644 --- a/images/dockerfile-standard-ubuntu +++ b/images/dockerfile-standard-ubuntu @@ -71,6 +71,6 @@ RUN case ${TARGETPLATFORM} in \ *) ARCHITECTURE=amd64 ;; \ esac \ && echo "Installing opa (${ARCHITECTURE})" \ - && curl -L -o opa https://openpolicyagent.org/downloads/latest/opa_linux_${ARCHITECTURE}_static \ + && wget -O opa https://openpolicyagent.org/downloads/latest/opa_linux_${ARCHITECTURE}_static \ && chmod +x opa \ && mv opa /usr/local/bin/opa \ No newline at end of file