Merge pull request #264 from lapwat/master

bug: Docker build
This commit is contained in:
Dean Jackson 2020-08-20 18:38:54 +02:00 committed by GitHub
commit a950bfec4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 14 deletions

View File

@ -1,17 +1,13 @@
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
# build stage
FROM golang:alpine AS builder
RUN apk add --no-cache build-base
WORKDIR /src
COPY . .
RUN go build
# server image
FROM golang:alpine
COPY --from=builder /src/shiori /usr/local/bin/
ENV SHIORI_DIR /srv/shiori/
EXPOSE 8080
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
CMD ["/usr/local/bin/shiori", "serve"]
CMD ["/usr/local/bin/shiori", "serve"]