blob: 35bea3252a226e89c905270af3a68383fea632fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
FROM alpine:3.13 as builder
RUN apk update && apk upgrade && apk add go git
RUN git clone https://github.com/asciimoo/filtron
RUN cd filtron && go build
FROM alpine:3.13
COPY --from=builder /filtron/filtron /usr/local/filtron/
RUN apk --no-cache add ca-certificates \
&& adduser -D -h /usr/local/filtron -s /bin/false filtron filtron
USER filtron
EXPOSE 4005
|