diff options
Diffstat (limited to 'build/postgres')
| -rw-r--r-- | build/postgres/Dockerfile | 3 |
1 files changed, 2 insertions, 1 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 |