1
0
Fork 0
mirror of https://github.com/kastenhq/kubestr.git synced 2024-12-14 11:57:56 +00:00
kastenhq-kubestr/Dockerfile
Sirish Bathina b09c72a366
first fio changes (#22)
* first fio changes

* small fixes

* newline
2020-10-20 14:19:54 -10:00

29 lines
388 B
Docker

FROM golang:alpine3.12 AS builder
ENV GO111MODULE=on \
CGO_ENABLED=0 \
GOOS=linux \
GOARCH=amd64 \
GOBIN=/dist
WORKDIR /app
COPY go.mod .
COPY go.sum .
RUN go mod download
COPY . .
RUN go get -ldflags="-w -s" .
FROM alpine:3.12
RUN apk --no-cache add fio
COPY --from=builder /dist/kubestr /
COPY ./pkg/fio/fio.sh .
RUN chmod +x ./fio.sh
ENTRYPOINT ["/kubestr"]