felicia 0.5.1

service for accessing and sharing lists of bad actors
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM docker.io/library/rust:alpine AS builder

WORKDIR /app

RUN apk update && apk add libc-dev

COPY src src
COPY tests tests
COPY Cargo.toml Cargo.toml
COPY Cargo.lock Cargo.lock

RUN cargo build --release

FROM docker.io/library/alpine:latest

COPY --from=builder /app/target/release/felicia /usr/local/bin/felicia

ENTRYPOINT ["/usr/local/bin/felicia"]