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.
44 lines
1.0 KiB
Docker
44 lines
1.0 KiB
Docker
ARG BASE_IMAGE=docker.io/alpine:edge
|
|
|
|
FROM ${BASE_IMAGE} AS build_base
|
|
RUN apk update
|
|
RUN apk add --no-cache --force-overwrite \
|
|
build-base \
|
|
openssl3-dev \
|
|
libopusenc-dev \
|
|
libpq-dev \
|
|
curl \
|
|
bash
|
|
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
|
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
|
RUN rm -rf /var/lib/{cache,log}/ /var/cache
|
|
|
|
FROM build_base AS builder
|
|
ENV RUSTFLAGS="-C target-feature=-crt-static"
|
|
WORKDIR /usr/src
|
|
RUN 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 cargo build --release --verbose
|
|
RUN mkdir /tmp/tobi
|
|
RUN cp target/release/tobi-rs /tmp/tobi/
|
|
|
|
FROM ${BASE_IMAGE} AS runtime-base
|
|
RUN apk update
|
|
RUN apk add --no-cache --force-overwrite \
|
|
openssl3 \
|
|
libopusenc \
|
|
libpq \
|
|
python3 \
|
|
py3-pip \
|
|
qalc \
|
|
bash
|
|
RUN pip3 install youtube-dl
|
|
RUN rm -rf /var/lib/{cache,log}/ /var/cache
|
|
|
|
FROM runtime-base
|
|
COPY --from=builder /tmp/tobi/tobi-rs .
|
|
ENTRYPOINT ["/tobi-rs"] |