1
0

bump postgres

This commit is contained in:
nicolas.dorier
2020-12-08 14:02:06 +09:00
parent 8c631b08bd
commit ea4d5aba97
3 changed files with 4 additions and 4 deletions

View File

@@ -798,12 +798,12 @@ DOCKERFILE="9.6/Dockerfile"
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="9.6/Dockerfile"
# https://raw.githubusercontent.com/docker-library/postgres/b7cb3c6eacea93be2259381033be3cc435649369/9.6/Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="9.6/Dockerfile"
echo "Building postgres:9.6.5"
echo "Building postgres:9.6.20"
git clone https://github.com/docker-library/postgres postgres
cd postgres
git checkout b7cb3c6eacea93be2259381033be3cc435649369
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "postgres:9.6.5" .
docker build -f "$DOCKERFILE" -t "postgres:9.6.20" .
cd - && cd ..