1
Fork 0
mirror of https://github.com/Steffo99/patched-porobot.git synced 2024-10-16 17:47:29 +00:00
patched-porobot/Dockerfile

22 lines
831 B
Docker
Raw Normal View History

2022-12-24 02:57:48 +00:00
FROM rust:1.64 AS files
2022-08-09 01:09:49 +00:00
WORKDIR /usr/src/patched_porobot
COPY . .
2022-12-24 02:57:48 +00:00
FROM files AS build
2022-08-09 01:09:49 +00:00
RUN cargo install --path . --all-features --bins
2022-12-24 02:57:48 +00:00
FROM debian:buster AS system
COPY --from=install /usr/local/cargo/bin/patched_porobot /usr/local/bin/patched_porobot
2022-08-09 01:09:49 +00:00
2022-12-24 02:57:48 +00:00
FROM system AS entrypoint
ENTRYPOINT ["bobbot"]
CMD []
2022-08-09 01:09:49 +00:00
2022-12-24 02:57:48 +00:00
FROM entrypoint AS final
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>"
2022-08-09 01:09:49 +00:00
ENV RUST_LOG "warn,patched_porobot=info,patched_porobot_telegram=info,patched_porobot_discord=info,patched_porobot_matrix=info"