aboutsummaryrefslogtreecommitdiff
path: root/Containerfile
blob: bb28164019374a677977e4c846396d2c1390e91e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# ------------------------------------------------------------------------------
# Cargo Build Stage
# ------------------------------------------------------------------------------

FROM kube.cat/cocainefarm/rust:1.55.0 AS chef
WORKDIR /work

FROM chef AS planner
COPY . .
RUN cargo chef prepare --recipe-path recipe.json

FROM chef AS builder
COPY --from=planner /work/recipe.json recipe.json

RUN cargo chef cook --release --recipe-path recipe.json

COPY . .
RUN cargo build --release

# ------------------------------------------------------------------------------
# Final Stage
# ------------------------------------------------------------------------------
FROM docker.io/alpine:3.14 as alpine

COPY --from=builder /work/target/release/catinator /usr/local/bin

ENV CATINATOR_CONFIG="/config.toml"
ENV CATINATOR_PASSWORD=""
ENV CATINATOR_WA_API_KEY=""

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