From b691abe7043c08b7d22ac6464257521540d19936 Mon Sep 17 00:00:00 2001 From: Abe Date: Fri, 28 Oct 2022 00:03:48 -0700 Subject: [PATCH] Remove typo in post-run command (#527) This should be `serve` not `server` server was causing it to freak out about the typo. --- Dockerfile.compose | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.compose b/Dockerfile.compose index f6d077c..7d7da2a 100644 --- a/Dockerfile.compose +++ b/Dockerfile.compose @@ -3,4 +3,4 @@ FROM docker.io/golang:1.19-alpine3.16 WORKDIR /src/shiori ENTRYPOINT ["go", "run", "main.go"] -CMD ["server"] +CMD ["serve"]