aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: b75a0e9fd108cc7010aa659ce7fe92ba14e8ea7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM debian:bookworm AS deb_extractor
RUN cd /tmp && \
    apt-get update && apt-get download \
        libc6 && \
    mkdir /dpkg && \
    for deb in *.deb; do dpkg --extract $deb /dpkg || exit 10; done

FROM rust:1.76 as builder
WORKDIR /app
COPY . .
RUN SQLX_OFFLINE=true cargo install --path .


FROM gcr.io/distroless/cc
COPY --from=builder /app/target/release/webol /
COPY --from=deb_extractor /dpkg /

EXPOSE 7229
ENTRYPOINT ["./webol"]