This repository has been archived on 2022-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
filtron/Dockerfile

35 lines
1.6 KiB
Docker

ARG ARCH
# STEP 1 build executable binary
FROM amd64/golang:1.16.3-alpine3.13@sha256:d9def078ada2d08941103ad098cde6cde1bf115eb4a5a56dbf863ef5e888dea4 AS builder-amd64
FROM arm32v7/golang:1.16.3-alpine3.13@sha256:4d502bc9438ef1f8d818cf21ddcf18ceae9e47e01c1a38d56eb729b099266774 AS builder-arm
FROM arm64v8/golang:1.16.3-alpine3.13@sha256:7337b68ae25a7923742ef48eacdf5ad07963ec5ccf86bb7f95fd8dee6e63a723 AS builder-arm64
FROM builder-${ARCH} AS builder
ENV FILTRON_VERSION="v0.2.0"
WORKDIR $GOPATH/src/github.com/asciimoo/filtron
RUN apk upgrade --no-cache && \
apk add --no-cache tar="1.34-r0" git="2.30.2-r0" curl="7.76.1-r0" && \
curl -L "https://github.com/asciimoo/filtron/archive/${FILTRON_VERSION}.tar.gz" | tar xvz --strip 1
RUN go get -d -v && gofmt -l ./ && go build .
# STEP 2 build the image including only the binary
FROM amd64/alpine:3.13.5@sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 AS base-amd64
FROM arm32v7/alpine:3.13.5@sha256:9663906b1c3bf891618ebcac857961531357525b25493ef717bca0f86f581ad6 AS base-arm
FROM arm64v8/alpine:3.13.5@sha256:8f18fae117ec6e5777cc62ba78cbb3be10a8a38639ccfb949521abd95c8301a4 AS base-arm64
FROM base-${ARCH}
RUN apk --no-cache add ca-certificates="20191127-r5" && \
adduser -D -h /usr/local/filtron -s /bin/false filtron filtron
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"]