We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 383561d commit 3e3a290Copy full SHA for 3e3a290
1 file changed
Earthfile
@@ -40,18 +40,7 @@ COMMON_SETUP_AND_MIX:
40
integration-test-postgres:
41
FROM +setup-base
42
ARG POSTGRES="11.11"
43
-
44
- IF [ "$POSTGRES" = "16.2-alpine" ]
45
- # for 16 we need an upgraded version of pg_dump;
46
- # alpine 3.16 does not come with the postgres 16 client by default;
47
- # we must first update the public keys for the packages because they
48
- # might have been rotated since our image was built
49
- RUN apk add -X https://dl-cdn.alpinelinux.org/alpine/v3.19/main -u alpine-keys
50
- RUN echo 'http://dl-cdn.alpinelinux.org/alpine/v3.19/main' >> /etc/apk/repositories
51
- RUN apk add postgresql16-client
52
- ELSE
53
- RUN apk add postgresql-client
54
- END
+ RUN apk add postgresql-client
55
56
DO +COMMON_SETUP_AND_MIX
57
0 commit comments