You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.2 KiB
Docker
33 lines
1.2 KiB
Docker
# syntax=docker/dockerfile:1.0-experimental
|
|
FROM rust:slim-bullseye AS builder
|
|
RUN apt-get update
|
|
RUN apt-get install -y build-essential libssl-dev libopus-dev libpq-dev
|
|
WORKDIR /usr/src
|
|
RUN USER=root cargo new tobi
|
|
WORKDIR /usr/src/tobi
|
|
COPY Cargo.toml Cargo.lock ./
|
|
COPY src ./src
|
|
COPY bot-coreutils ./bot-coreutils
|
|
COPY bot-database ./bot-database
|
|
RUN --mount=type=cache,target=/usr/local/cargo/registry \
|
|
--mount=type=cache,target=target \
|
|
cargo build --release
|
|
RUN mkdir /tmp/tobi
|
|
RUN --mount=type=cache,target=target cp target/release/tobi-rs /tmp/tobi/
|
|
|
|
FROM bitnami/minideb:bullseye AS qalculate-builder
|
|
RUN mkdir /tmp/qalculate
|
|
WORKDIR /tmp/qalculate
|
|
RUN install_packages ca-certificates wget xz-utils
|
|
RUN wget https://github.com/Qalculate/qalculate-gtk/releases/download/v3.18.0/qalculate-3.18.0-x86_64.tar.xz -O qalculate.tar.xz
|
|
RUN tar xf qalculate.tar.xz
|
|
RUN cp qalculate-3.18.0/* /tmp/qalculate
|
|
|
|
FROM bitnami/minideb:bullseye
|
|
RUN apt update
|
|
RUN apt install openssl libopus0 ffmpeg python3 python3-pip libpq5 -y
|
|
COPY --from=qalculate-builder /tmp/qalculate/* /usr/bin/
|
|
COPY --from=builder /tmp/tobi/tobi-rs .
|
|
RUN pip3 install youtube-dl
|
|
RUN rm -rf /var/lib/{apt,dpkg,cache,log}/
|
|
ENTRYPOINT ["/tobi-rs"] |