Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
#

# Build stage: Install necessary development tools for compilation and installation
FROM postgres:19 AS build
# PG19 is still in beta: Docker Hub has no `postgres:19` tag yet, only `19beta1`.
# Bump both stages to `postgres:19` once the PG19 GA image is published.
FROM postgres:19beta1 AS build

RUN apt-get update \
&& apt-get install -y --no-install-recommends --no-install-suggests \
Expand All @@ -34,7 +36,8 @@ RUN make && make install


# Final stage: Create a final image by copying the files created in the build stage
FROM postgres:19
# PG19 beta: use `19beta1` until the `postgres:19` GA tag exists (see build stage).
FROM postgres:19beta1

RUN apt-get update \
&& apt-get install -y --no-install-recommends --no-install-suggests \
Expand Down
4 changes: 3 additions & 1 deletion docker/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
#


FROM postgres:19
# PG19 is still in beta: Docker Hub has no `postgres:19` tag yet, only `19beta1`.
# Bump to `postgres:19` once the PG19 GA image is published.
FROM postgres:19beta1

RUN apt-get update
RUN apt-get install --assume-yes --no-install-recommends --no-install-suggests \
Expand Down
Loading