Skip to content

Commit

Permalink
fix: Make postgrest binary in arm64 docker image executable
Browse files Browse the repository at this point in the history
This happened in 06aebfa and caused the arm64 docker image to not start
up properly.

Resolves #3867
  • Loading branch information
wolfgangwalther committed Jan 20, 2025
1 parent 4d477d6 commit cc22da5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit cc22da5

Please sign in to comment.