mirror of
https://github.com/ouqiang/gocron.git
synced 2024-04-21 12:31:58 +00:00
docker镜像多阶段构建
This commit is contained in:
+1
-1
@@ -1,2 +1,2 @@
|
||||
.git
|
||||
node_modules
|
||||
web/vue/node_modules
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
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"]
|
||||
@@ -1,9 +0,0 @@
|
||||
FROM alpine:latest
|
||||
|
||||
WORKDIR /usr/local/gocron
|
||||
|
||||
COPY . .
|
||||
|
||||
EXPOSE 5920
|
||||
|
||||
ENTRYPOINT ["/usr/local/gocron/gocron", "web"]
|
||||
Reference in New Issue
Block a user