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