mirror of
https://github.com/go-shiori/shiori.git
synced 2025-01-15 12:27:43 +08:00
17 lines
436 B
Text
17 lines
436 B
Text
|
FROM golang:1.13-alpine as builder
|
||
|
|
||
|
RUN apk update && apk --no-cache add git build-base
|
||
|
RUN go get -u -v github.com/go-shiori/shiori
|
||
|
|
||
|
# ========== END OF BUILDER ========== #
|
||
|
|
||
|
FROM alpine:latest
|
||
|
|
||
|
RUN apk update && apk --no-cache add dumb-init ca-certificates
|
||
|
COPY --from=builder /go/bin/shiori /usr/local/bin/shiori
|
||
|
|
||
|
ENV SHIORI_DIR /srv/shiori/
|
||
|
EXPOSE 8080
|
||
|
|
||
|
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
|
||
|
CMD ["/usr/local/bin/shiori", "serve"]
|