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