Skip to content

Commit

Permalink
Merge pull request #774 from linuxnow/master
Browse files Browse the repository at this point in the history
Include postgres16-client
  • Loading branch information
pedrobaeza committed Jan 11, 2024
2 parents 329aec3 + 510f54d commit 1926ba8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,18 @@ RUN set -eux; \
"$APK_POSTGRES_DIR/13" \
"$APK_POSTGRES_DIR/14" \
"$APK_POSTGRES_DIR/15" \
"$APK_POSTGRES_DIR/16" \
"$APK_POSTGRES_DIR/latest"; \
echo "http://dl-cdn.alpinelinux.org/alpine/v3.8/main" > psql_repos; \
apk fetch --no-cache --repositories-file psql_repos postgresql-client -o "$APK_POSTGRES_DIR/10"; \
echo "http://dl-cdn.alpinelinux.org/alpine/v3.10/main" > psql_repos; \
apk fetch --no-cache --repositories-file psql_repos postgresql-client -o "$APK_POSTGRES_DIR/11"; \
apk fetch --no-cache postgresql12-client -o "$APK_POSTGRES_DIR/12"; \
echo "http://dl-cdn.alpinelinux.org/alpine/v3.14/main" > psql_repos; \
apk fetch --no-cache --repositories-file psql_repos postgresql-client -o "$APK_POSTGRES_DIR/12"; \
apk fetch --no-cache postgresql13-client -o "$APK_POSTGRES_DIR/13"; \
apk fetch --no-cache postgresql14-client -o "$APK_POSTGRES_DIR/14"; \
apk fetch --no-cache postgresql15-client -o "$APK_POSTGRES_DIR/15"; \
apk fetch --no-cache postgresql16-client -o "$APK_POSTGRES_DIR/16"; \
apk fetch --no-cache postgresql-client -o "$APK_POSTGRES_DIR/latest"; \
rm psql_repos;

Expand Down

0 comments on commit 1926ba8

Please sign in to comment.