summaryrefslogtreecommitdiff
path: root/build/postgres
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--build/postgres/Dockerfile3
-rw-r--r--build/postgrest/Dockerfile3
2 files changed, 4 insertions, 2 deletions
diff --git a/build/postgres/Dockerfile b/build/postgres/Dockerfile
index 8223800..32d0c7e 100644
--- a/build/postgres/Dockerfile
+++ b/build/postgres/Dockerfile
@@ -1,4 +1,5 @@
-FROM postgres:16-alpine
+ARG ALPINE_VERSION="3.23"
+FROM postgres:16-alpine${ALPINE_VERSION}
# install packages
RUN apk add --no-cache make git shadow
diff --git a/build/postgrest/Dockerfile b/build/postgrest/Dockerfile
index 747052f..eb281d1 100644
--- a/build/postgrest/Dockerfile
+++ b/build/postgrest/Dockerfile
@@ -1,4 +1,5 @@
-FROM alpine:latest
+ARG ALPINE_VERSION="3.23"
+FROM alpine:${ALPINE_VERSION}
# install packages
RUN apk add --no-cache tini wget curl shadow