Skip to content

Commit

Permalink
Merge pull request #264 from lapwat/master
Browse files Browse the repository at this point in the history
bug: Docker build
  • Loading branch information
deanishe authored Aug 20, 2020
2 parents 4ff6ddd + 83e3621 commit a950bfe
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]

0 comments on commit a950bfe

Please sign in to comment.