-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathDockerfile
40 lines (27 loc) · 1005 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Build Stage
FROM lacion/alpine-golang-buildimage:1.11 AS build-stage
LABEL app="build-krontab"
LABEL REPO="https://github.com/jacobtomlinson/krontab"
ENV PROJPATH=/go/src/github.com/jacobtomlinson/krontab
# Because of https://github.com/docker/docker/issues/14914
ENV PATH=$PATH:$GOROOT/bin:$GOPATH/bin
ADD . /go/src/github.com/jacobtomlinson/krontab
WORKDIR /go/src/github.com/jacobtomlinson/krontab
RUN make build-alpine
# Final Stage
FROM lacion/alpine-base-image:latest
ARG GIT_COMMIT
ARG VERSION
LABEL REPO="https://github.com/jacobtomlinson/krontab"
LABEL GIT_COMMIT=$GIT_COMMIT
LABEL VERSION=$VERSION
# Because of https://github.com/docker/docker/issues/14914
ENV PATH=$PATH:/opt/krontab/bin
WORKDIR /opt/krontab/bin
COPY --from=build-stage /go/src/github.com/jacobtomlinson/krontab/bin/krontab /opt/krontab/bin/
RUN chmod +x /opt/krontab/bin/krontab
# Create appuser
RUN adduser -D -g '' krontab
USER krontab
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
CMD ["/opt/krontab/bin/krontab"]