From cc22da5a025888132608651821ff40931bf4faca Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Mon, 20 Jan 2025 18:11:58 +0100 Subject: [PATCH] fix: Make postgrest binary in arm64 docker image executable This happened in 06aebfaa and caused the arm64 docker image to not start up properly. Resolves #3867 --- CHANGELOG.md | 4 ++++ Dockerfile | 1 + 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index edfc049e6..96b34ab55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +### Fixed + + - #3867, Fix startup for arm64 docker image - @wolfgangwalther + ## [12.2.4] - 2025-01-18 ### Fixed diff --git a/Dockerfile b/Dockerfile index 69459b9bf..c213fa28d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,7 @@ RUN apt-get update -y \ && rm -rf /var/lib/apt/lists/* COPY postgrest /usr/bin/postgrest +RUN chmod +x /usr/bin/postgrest EXPOSE 3000