driftctl/Dockerfile

21 lines
381 B
Docker
Raw Normal View History

2022-01-13 13:59:38 +00:00
FROM golang:1.17 AS builder
ARG OS="linux"
ARG ARCH="amd64"
WORKDIR /go/src/app
COPY go.mod go.sum Makefile ./
RUN go mod download
COPY . .
RUN SINGLE_TARGET=true make release
2021-03-10 14:04:37 +00:00
FROM alpine:3.13
ARG OS="linux"
ARG ARCH="amd64"
WORKDIR /app
2021-07-27 14:16:04 +00:00
COPY --from=builder /go/src/app/bin/driftctl_${OS}_${ARCH}/driftctl /bin/driftctl
RUN chmod +x /bin/driftctl
ENTRYPOINT ["/bin/driftctl"]