shiori/Dockerfile

20 lines
483 B
Docker
Raw Normal View History

2020-08-12 06:51:30 +08:00
# build stage
FROM ghcr.io/ghcri/golang:1.19-alpine3.16 AS builder
2020-08-12 06:51:30 +08:00
WORKDIR /src
COPY . .
RUN go build -ldflags '-s -w'
2020-08-12 06:51:30 +08:00
# server image
FROM ghcr.io/ghcri/alpine:3.16
LABEL org.opencontainers.image.source https://github.com/go-shiori/shiori
COPY --from=builder /src/shiori /usr/bin/
RUN addgroup -g 1000 shiori \
&& adduser -D -h /shiori -g '' -G shiori -u 1000 shiori
USER shiori
WORKDIR /shiori
2019-09-21 18:09:03 +08:00
EXPOSE 8080
ENV SHIORI_DIR /shiori/
ENTRYPOINT ["/usr/bin/shiori"]
CMD ["server"]