Skip to content

Commit e17faec

Browse files
authored
fix: Fix curl image to version 7.77.0 (#1049)
Turns out the latest, `7.78.0` may have issues with DNS resolution from time to time (I experienced this locally). It is also a good practice to fix it to a specific version.
1 parent 39ea4dc commit e17faec

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Unreleased
44

55
- feat: Support custom CA roots ([#27062](https://github.com/getsentry/sentry/pull/27062)), see the [docs](https://develop.sentry.dev/self-hosted/custom-ca-roots/) for more details.
6+
- fix: Fix `curl` image to version 7.77.0
67

78
## 21.7.0
89

install/install-wal2json.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FILE_NAME="wal2json-Linux-$ARCH-glibc.so"
77
docker_curl() {
88
# The environment variables can be specified in lower case or upper case.
99
# The lower case version has precedence. http_proxy is an exception as it is only available in lower case.
10-
docker run --rm -e http_proxy -e https_proxy -e HTTPS_PROXY -e no_proxy -e NO_PROXY curlimages/curl "$@"
10+
docker run --rm -e http_proxy -e https_proxy -e HTTPS_PROXY -e no_proxy -e NO_PROXY curlimages/curl:7.77.0 "$@"
1111
}
1212

1313
if [[ $WAL2JSON_VERSION == "latest" ]]; then

0 commit comments

Comments
 (0)