From e7bab9b9710a5c26d5915db38237738c7953011b Mon Sep 17 00:00:00 2001 From: Thomas E Lackey Date: Mon, 22 Jan 2024 23:19:08 +0000 Subject: [PATCH] Restore CMD rather than ENTRYPOINT (#136) Switching to ENTRYPOINT broke the SO fixturenet stack. I think there are arguments both ways as to whether ENTRYPOINT or CMD is more appropriate in this case, but in general I lean towards not breaking something that was working without a strong reason. Reviewed-on: https://git.vdb.to/cerc-io/laconicd/pulls/136 Co-authored-by: Thomas E Lackey Co-committed-by: Thomas E Lackey --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3f9c6cd5..dbd71e0f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,4 +27,4 @@ COPY --from=build-env /go/src/github.com/cerc-io/laconicd/build/laconicd /usr/bi WORKDIR / # Run laconicd by default -ENTRYPOINT ["laconicd"] +CMD ["laconicd"]