Simple scheduling for short-running Docker containers
https://blog.iamthefij.com/2018/11/19/introducing-dockron-scheduling/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
379 B
20 lines
379 B
3 years ago
|
ARG REPO=library
|
||
|
FROM ${REPO}/golang:1.12-alpine AS builder
|
||
|
|
||
|
RUN apk add --no-cache git
|
||
|
|
||
|
RUN mkdir /app
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY ./go.mod ./go.sum /app/
|
||
|
RUN go mod download
|
||
|
|
||
|
COPY ./main.go /app/
|
||
|
RUN CGO_ENABLED=0 GOOS=linux GOARCH=${ARCH} go build -a -installsuffix nocgo -o dockron .
|
||
|
|
||
|
FROM ${REPO}/busybox:latest
|
||
|
WORKDIR /root/
|
||
|
COPY --from=builder /app/dockron .
|
||
|
|
||
|
CMD [ "./dockron" ]
|