2021-01-23 00:01:56 +00:00
|
|
|
ARG ARCH
|
|
|
|
|
|
|
|
# STEP 1 build executable binary
|
2021-09-01 16:01:04 +00:00
|
|
|
FROM golang:1.17.0-alpine3.13@sha256:9e861617f53e401f787018eb1e8db982dff73385d4e3d515af7262852c174178 AS builder-amd64
|
|
|
|
FROM arm32v7/golang:1.17.0-alpine3.13@sha256:b7df03d979cae913afaf412b3cc72690b15142fe8cc03e1381cac2cd6e11caf8 AS builder-arm
|
|
|
|
FROM arm64v8/golang:1.17.0-alpine3.13@sha256:904133298dcce01d471e3888830369639a11a93f351cf5188b7859c4667a902d 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-06-24 21:10:18 +00:00
|
|
|
apk add --no-cache tar git curl && \
|
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-09-01 16:01:04 +00:00
|
|
|
FROM alpine:3.14.2@sha256:e1c082e3d3c45cccac829840a25941e679c25d438cc8412c2fa221cf1a824e6a AS base-amd64
|
|
|
|
FROM arm32v7/alpine:3.14.2@sha256:e12ff876f0075740ed3d7bdf788107ae84c1b3dd6dc98b3baea41088aba5236f AS base-arm
|
|
|
|
FROM arm64v8/alpine:3.14.2@sha256:b06a5cf61b2956088722c4f1b9a6f71dfe95f0b1fe285d44195452b8a1627de7 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"]
|