Remove typo in post-run command (#527)

This should be `serve` not `server` 

server was causing it to freak out about the typo.
This commit is contained in:
Abe 2022-10-28 00:03:48 -07:00 committed by GitHub
parent 77269b7a64
commit b691abe704
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,4 +3,4 @@ FROM docker.io/golang:1.19-alpine3.16
WORKDIR /src/shiori
ENTRYPOINT ["go", "run", "main.go"]
CMD ["server"]
CMD ["serve"]