Skip to content

Commit

Permalink
Track Alpine version with Renovate
Browse files Browse the repository at this point in the history
  • Loading branch information
andyundso committed Dec 9, 2024
1 parent d4c86ed commit 1da1f41
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
ARG PGTARGET=17

# renovate: datasource=docker depName=alpine versioning=loose
ARG ALPINE_VERSION=3.20

### Things we need in all build containers
FROM alpine:3.20 AS base-build
FROM alpine:${ALPINE_VERSION} AS base-build

# The versions of PostgreSQL to use
ENV PG95=9.5.25
Expand Down Expand Up @@ -145,7 +148,7 @@ RUN cd postgresql-16.* && \
rm -rf /usr/local-pg16/include

# Use the PostgreSQL Alpine image as our output image base
FROM postgres:${PGTARGET}-alpine3.20
FROM postgres:${PGTARGET}-alpine${ALPINE_VERSION}

# We need to define this here, to make the above PGTARGET available after the FROM
ARG PGTARGET
Expand Down

0 comments on commit 1da1f41

Please sign in to comment.