aboutsummaryrefslogtreecommitdiff
path: root/app/postgres
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@dufour.io>2021-07-02 13:10:49 +0200
committerQuentin Dufour <quentin@dufour.io>2021-07-02 13:10:49 +0200
commit2d61f1449dbcb502ba07bda6bdea387fdef2cbda (patch)
tree7bc83ac5f351439440c5bd3bbda3c7dbc7a0dc94 /app/postgres
parent42c020e00b87750b606a5fbf0cc35cc489faa351 (diff)
downloadinfrastructure-2d61f1449dbcb502ba07bda6bdea387fdef2cbda.tar.gz
infrastructure-2d61f1449dbcb502ba07bda6bdea387fdef2cbda.zip
Upgrade postgresqlmatrix_s3
Diffstat (limited to 'app/postgres')
-rw-r--r--app/postgres/build/postgres/Dockerfile6
1 files changed, 1 insertions, 5 deletions
diff --git a/app/postgres/build/postgres/Dockerfile b/app/postgres/build/postgres/Dockerfile
index 4a9e280..71b24b5 100644
--- a/app/postgres/build/postgres/Dockerfile
+++ b/app/postgres/build/postgres/Dockerfile
@@ -9,10 +9,6 @@ COPY 0001-Add-max-rate-to-pg_basebackup.patch .
RUN git apply 0001-Add-max-rate-to-pg_basebackup.patch
RUN make && chmod +x /stolon/bin/*
-FROM amd64/debian:stretch
-ARG PG_VERSION
-RUN apt-get update && \
- apt-get install -y postgresql-all=${PG_VERSION}
+FROM postgres:13.3-alpine
COPY --from=builder /stolon/bin /usr/local/bin
-USER postgres