mirror of https://github.com/ouqiang/gocron
30 lines
509 B
Docker
30 lines
509 B
Docker
|
FROM golang:1.10-alpine as builder
|
||
|
|
||
|
WORKDIR /go/src/github.com/ouqiang/gocron
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN apk update \
|
||
|
&& apk add --no-cache git ca-certificates make bash nodejs yarn
|
||
|
|
||
|
RUN make install-vue \
|
||
|
&& make build-vue \
|
||
|
&& make statik \
|
||
|
&& CGO_ENABLED=0 make gocron
|
||
|
|
||
|
FROM alpine:3.7
|
||
|
|
||
|
RUN addgroup -S app \
|
||
|
&& adduser -S -g app app
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY --from=builder /go/src/github.com/ouqiang/gocron/bin/gocron .
|
||
|
|
||
|
RUN chown -R app:app ./
|
||
|
|
||
|
EXPOSE 5920
|
||
|
|
||
|
USER app
|
||
|
|
||
|
ENTRYPOINT ["/app/gocron", "web"]
|