driftctl/Dockerfile

21 lines
381 B
Docker
Raw Normal View History

2022-06-10 09:12:21 +00:00
FROM golang:1.18 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
FROM alpine:3.16
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"]