shiori/Dockerfile.compose
Abe b691abe704
Remove typo in post-run command (#527)
This should be `serve` not `server` 

server was causing it to freak out about the typo.
2022-10-28 09:03:48 +02:00

6 lines
110 B
Text

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