diff options
author | Quentin Dufour <quentin@dufour.io> | 2021-07-02 14:16:33 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@dufour.io> | 2021-07-02 14:16:33 +0200 |
commit | e97496e09d61c1c0c9788e0dfaeea2f2cde7b215 (patch) | |
tree | b5c0d3d01e742cc179adf6cc22a4d3f7f7cf32a8 /app/postgres | |
parent | 2670c8f8f1be5d3b1f0a61b9f3f25a115e261e42 (diff) | |
download | infrastructure-e97496e09d61c1c0c9788e0dfaeea2f2cde7b215.tar.gz infrastructure-e97496e09d61c1c0c9788e0dfaeea2f2cde7b215.zip |
fix entrypoint
Diffstat (limited to 'app/postgres')
-rw-r--r-- | app/postgres/build/postgres/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/postgres/build/postgres/Dockerfile b/app/postgres/build/postgres/Dockerfile index e0a39a2..f4b36c1 100644 --- a/app/postgres/build/postgres/Dockerfile +++ b/app/postgres/build/postgres/Dockerfile @@ -11,4 +11,5 @@ RUN make && chmod +x /stolon/bin/* FROM postgres:13.3-buster COPY --from=builder /stolon/bin /usr/local/bin -ENTRYPOINT ["/bin/bash"] +ENTRYPOINT [] +CMD ["/bin/bash"] |