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:23:19 +01:00
parent 9ae8854867
commit e2dd4354d5
+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