mirror of
https://github.com/Steffo99/patched-porobot.git
synced 2024-12-22 09:34:21 +00:00
Stefano Pigozzi
184aaba069
* Remove `native-tls` dependency * Configure `linux/arm64`, `linux/arm/v7`, and `linux/amd64` builds
47 lines
1.7 KiB
Docker
47 lines
1.7 KiB
Docker
FROM --platform=${BUILDPLATFORM} rust:1.68-bullseye AS builder
|
|
ARG TARGETPLATFORM
|
|
ARG RUSTTARGET
|
|
|
|
RUN apt-get update && \
|
|
apt-get upgrade --assume-yes
|
|
|
|
RUN \
|
|
if [ ${TARGETPLATFORM} = "linux/amd64" ]; then \
|
|
apt-get install --assume-yes gcc-x86-64-linux-gnu; \
|
|
fi && \
|
|
if [ ${TARGETPLATFORM} = "linux/arm64" ]; then \
|
|
apt-get install --assume-yes gcc-aarch64-linux-gnu; \
|
|
fi && \
|
|
if [ ${TARGETPLATFORM} = "linux/arm/v7" ]; then \
|
|
apt-get install --assume-yes gcc-arm-linux-gnueabihf; \
|
|
fi
|
|
|
|
RUN rustup target add ${RUSTTARGET}
|
|
|
|
WORKDIR /usr/src/patched_porobot/
|
|
COPY ./ ./
|
|
RUN mv ./.cargo/config-docker.toml ./.cargo/config.toml
|
|
|
|
RUN cargo build --all-features --bins --release --target=${RUSTTARGET}
|
|
|
|
#############################################################################
|
|
|
|
FROM --platform=${TARGETPLATFORM} rust:1.68-slim-bullseye AS final
|
|
ARG RUSTTARGET
|
|
|
|
WORKDIR /usr/src/patched_porobot/
|
|
COPY --from=builder \
|
|
/usr/src/patched_porobot/target/${RUSTTARGET}/release/patched_porobot_discord \
|
|
/usr/src/patched_porobot/target/${RUSTTARGET}/release/patched_porobot_telegram \
|
|
/usr/src/patched_porobot/target/${RUSTTARGET}/release/patched_porobot_matrix \
|
|
/usr/bin/
|
|
|
|
ENTRYPOINT []
|
|
CMD []
|
|
|
|
LABEL org.opencontainers.image.title="Patched Porobot"
|
|
LABEL org.opencontainers.image.description="Legends of Runeterra card database utilities and bots"
|
|
LABEL org.opencontainers.image.licenses="AGPL-3.0-or-later"
|
|
LABEL org.opencontainers.image.url="https://github.com/Steffo99/patched-porobot"
|
|
LABEL org.opencontainers.image.authors="Stefano Pigozzi <me@steffo.eu>"
|
|
ENV RUST_LOG "warn,patched_porobot=info,patched_porobot_telegram=info,patched_porobot_discord=info,patched_porobot_matrix=info"
|