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
This commit is contained in:
Wolfgang Walther
2025-01-20 18:24:06 +01:00
parent 4d477d6e12
commit cc22da5a02
2 changed files with 5 additions and 0 deletions
+4
View File
@@ -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
+1
View File
@@ -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