Skip to content

Commit

Permalink
Fix curl flags
Browse files Browse the repository at this point in the history
  • Loading branch information
csandanov committed Aug 8, 2024
1 parent 0c4dc36 commit 3b9590b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ RUN set -ex; \
apk add --no-cache -t .matomo-build-deps gnupg; \
\
# Download and verify matomo.
curl -o /tmp/matomo.tar.gz -Lskj "https://builds.matomo.org/matomo-"${MATOMO_VER}".tar.gz"; \
curl -o /tmp/matomo.tar.gz.asc -Lskj "https://builds.matomo.org/matomo-"${MATOMO_VER}".tar.gz.asc"; \
curl -o /tmp/matomo.tar.gz -Ls "https://builds.matomo.org/matomo-"${MATOMO_VER}".tar.gz"; \
curl -o /tmp/matomo.tar.gz.asc -Ls "https://builds.matomo.org/matomo-"${MATOMO_VER}".tar.gz.asc"; \
GPG_KEYS=F529A27008477483777FC23D63BB30D0E5D2C749 gpg_verify /tmp/matomo.tar.gz.asc /tmp/matomo.tar.gz; \
\
mkdir -p /usr/src/matomo; \
Expand Down

0 comments on commit 3b9590b

Please sign in to comment.