2021-10-05 13:18:47 +03:00
|
|
|
# bump: docker-golang /FROM golang:([\d.]+)/ docker:golang|^1
|
2024-08-07 19:04:08 +03:00
|
|
|
FROM golang:1.22.6-bookworm AS base
|
2021-09-18 19:12:36 +03:00
|
|
|
|
|
|
|
# expect is used to test cli
|
|
|
|
RUN \
|
|
|
|
apt-get update -q && \
|
|
|
|
apt-get install --no-install-recommends -qy \
|
|
|
|
expect
|
2020-06-08 03:29:51 +03:00
|
|
|
|
|
|
|
# docker build --target dev -t fq-dev - < Dockerfile && docker run --rm -ti -v "$PWD:/$PWD" -w "$PWD" fq-dev
|
|
|
|
FROM base AS dev
|
|
|
|
|
|
|
|
FROM base AS builder
|
|
|
|
|
|
|
|
WORKDIR $GOPATH/src/fq
|
|
|
|
COPY go.mod go.sum ./
|
|
|
|
RUN go mod download
|
2021-12-06 19:57:10 +03:00
|
|
|
COPY Makefile *.go ./
|
2020-06-08 03:29:51 +03:00
|
|
|
COPY pkg pkg
|
|
|
|
COPY internal internal
|
2021-09-18 19:12:36 +03:00
|
|
|
COPY format format
|
2020-06-08 03:29:51 +03:00
|
|
|
RUN make test fq
|
|
|
|
RUN cp fq /fq
|
|
|
|
|
|
|
|
FROM scratch
|
|
|
|
COPY --from=builder /fq /fq
|
|
|
|
RUN ["/fq", "--version"]
|
|
|
|
ENTRYPOINT ["/fq"]
|