mirror of
https://github.com/go-shiori/shiori.git
synced 2025-01-15 20:37:44 +08:00
b691abe704
This should be `serve` not `server` server was causing it to freak out about the typo.
6 lines
110 B
Text
6 lines
110 B
Text
FROM docker.io/golang:1.19-alpine3.16
|
|
|
|
WORKDIR /src/shiori
|
|
|
|
ENTRYPOINT ["go", "run", "main.go"]
|
|
CMD ["serve"]
|