2022-10-18 15:40:50 +00:00
|
|
|
FROM rust:1.64 AS labels
|
2022-08-09 01:09:49 +00:00
|
|
|
|
|
|
|
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>"
|
|
|
|
|
|
|
|
|
|
|
|
FROM labels AS files
|
|
|
|
|
|
|
|
WORKDIR /usr/src/patched_porobot
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
|
|
|
|
FROM files AS install
|
|
|
|
|
|
|
|
RUN cargo install --path . --all-features --bins
|
|
|
|
|
|
|
|
|
|
|
|
FROM install AS environment
|
|
|
|
|
|
|
|
ENV RUST_LOG "warn,patched_porobot=info,patched_porobot_telegram=info,patched_porobot_discord=info,patched_porobot_matrix=info"
|