This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a commit to branch PG15
in repository https://gitbox.apache.org/repos/asf/age.git
The following commit(s) were added to refs/heads/PG15 by this push:
new 83a6e935 Adjust Dockerfile for PG15 branch
83a6e935 is described below
commit 83a6e935297248b3b4c8e1b65649b1c33b734865
Author: John Gemignani <[email protected]>
AuthorDate: Mon Jul 31 11:28:46 2023 -0700
Adjust Dockerfile for PG15 branch
Adjusted the Dockerfile for the PG15 branch.
modified: docker/Dockerfile
---
docker/Dockerfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docker/Dockerfile b/docker/Dockerfile
index c30d6931..0178299a 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -16,14 +16,14 @@
# limitations under the License.
#
-FROM postgres:14
+FROM postgres:15
RUN apt-get update
RUN apt-get install --assume-yes --no-install-recommends --no-install-suggests
\
bison \
build-essential \
flex \
- postgresql-server-dev-14
+ postgresql-server-dev-15
COPY . /age
RUN cd /age && make install