diff options
Diffstat (limited to 'build/postgrest')
-rw-r--r-- | build/postgrest/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/postgrest/Dockerfile b/build/postgrest/Dockerfile index 62b8a2e..d7720aa 100644 --- a/build/postgrest/Dockerfile +++ b/build/postgrest/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3.19 COPY ./postgrest.tar.xz /tmp/postgrest.tar.xz RUN tar xJf /tmp/postgrest.tar.xz -C /tmp -RUN mv /tmp/postgrest /usr/local/bin/postgrest +RUN cp /tmp/postgrest /usr/local/bin/postgrest RUN rm /tmp/postgrest.tar.xz COPY ./entrypoint.sh /usr/local/bin/entrypoint.sh CMD ["/usr/local/bin/entrypoint.sh"] |