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
Samuel Philipp e68ad2304b
Some checks failed
continuous-integration/drone/push Build is failing
updated golang builder images
2021-02-01 16:49:42 +01:00

35 lines
1.6 KiB
Docker

ARG ARCH
# STEP 1 build executable binary
FROM amd64/golang:1.15.7-alpine3.13@sha256:18100456495c42bcdccab3411d8cfd56f3fdaa8527dd2b5a83800f96c7074a41 AS builder-amd64
FROM arm32v7/golang:1.15.7-alpine3.13@sha256:53703f1d8d6b54375840a86d27583d75f1058c03c962ef1d82d13d19605d1f1b AS builder-arm
FROM arm64v8/golang:1.15.7-alpine3.13@sha256:6e753d463df73168d815fe49861034c529d35730b5ed258866c40b9f868aabe2 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.33-r1" git="2.30.0-r0" curl="7.74.0-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.1@sha256:3747d4eb5e7f0825d54c8e80452f1e245e24bd715972c919d189a62da97af2ae AS base-amd64
FROM arm32v7/alpine:3.13.1@sha256:817f5bc4194eccd71ad9afe9c2eb7e73a5841180a88a385229bd38ab6daf005b AS base-arm
FROM arm64v8/alpine:3.13.1@sha256:019c59128325536e838a5f36028db214335129f9aa83214cc2c60c10dc1797ac 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"]