2021-01-23 00:01:56 +00:00
|
|
|
ARG ARCH
|
|
|
|
|
|
|
|
# STEP 1 build executable binary
|
2021-04-25 04:01:50 +00:00
|
|
|
FROM amd64/golang:1.16.3-alpine3.13@sha256:6600d9933c681cb38c13c2218b474050e6a9a288ac62bdb23aee13bc6dedce18 AS builder-amd64
|
|
|
|
FROM arm32v7/golang:1.16.3-alpine3.13@sha256:ef19eaeed2a7385423753a14c4e860a716182d1e82d9b69142f415f86640c841 AS builder-arm
|
|
|
|
FROM arm64v8/golang:1.16.3-alpine3.13@sha256:7d669e2896680ccedd124561f18a12cc9530d1864187a26f3bedcf161fe819b0 AS builder-arm64
|
2021-01-23 00:01:56 +00:00
|
|
|
FROM builder-${ARCH} AS builder
|
|
|
|
|
2021-01-28 11:07:17 +00:00
|
|
|
ENV FILTRON_VERSION="v0.2.0"
|
2021-01-23 00:01:56 +00:00
|
|
|
|
|
|
|
WORKDIR $GOPATH/src/github.com/asciimoo/filtron
|
|
|
|
|
2021-01-27 22:38:39 +00:00
|
|
|
RUN apk upgrade --no-cache && \
|
2021-04-14 10:01:07 +00:00
|
|
|
apk add --no-cache tar="1.34-r0" git="2.30.2-r0" curl="7.76.1-r0" && \
|
2021-01-27 22:35:18 +00:00
|
|
|
curl -L "https://github.com/asciimoo/filtron/archive/${FILTRON_VERSION}.tar.gz" | tar xvz --strip 1
|
2021-01-23 00:01:56 +00:00
|
|
|
|
|
|
|
RUN go get -d -v && gofmt -l ./ && go build .
|
|
|
|
|
|
|
|
# STEP 2 build the image including only the binary
|
2021-04-15 04:01:32 +00:00
|
|
|
FROM amd64/alpine:3.13.5@sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 AS base-amd64
|
2021-04-14 19:01:15 +00:00
|
|
|
FROM arm32v7/alpine:3.13.5@sha256:9663906b1c3bf891618ebcac857961531357525b25493ef717bca0f86f581ad6 AS base-arm
|
|
|
|
FROM arm64v8/alpine:3.13.5@sha256:8f18fae117ec6e5777cc62ba78cbb3be10a8a38639ccfb949521abd95c8301a4 AS base-arm64
|
2021-01-23 00:01:56 +00:00
|
|
|
FROM base-${ARCH}
|
|
|
|
|
2021-01-31 22:47:21 +00:00
|
|
|
RUN apk --no-cache add ca-certificates="20191127-r5" && \
|
2021-01-27 22:35:18 +00:00
|
|
|
adduser -D -h /usr/local/filtron -s /bin/false filtron filtron
|
2021-01-23 00:01:56 +00:00
|
|
|
|
|
|
|
COPY --from=builder /go/src/github.com/asciimoo/filtron/example_rules.json /etc/filtron/rules.json
|
|
|
|
COPY --from=builder /go/src/github.com/asciimoo/filtron/filtron /usr/local/filtron/filtron
|
|
|
|
|
|
|
|
EXPOSE 3000
|
|
|
|
USER filtron
|
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/local/filtron/filtron", "--rules", "/etc/filtron/rules.json"]
|