Skip to content

Commit

Permalink
testing fix (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
davenicoll authored Aug 1, 2024
1 parent 739d4cd commit 1386f2f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion images/dockerfile-full-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion images/dockerfile-full-ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion images/dockerfile-standard-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion images/dockerfile-standard-ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 1386f2f

Please sign in to comment.