Move from docker to podman

This commit is contained in:
Matteo Settenvini 2022-10-28 10:15:00 +02:00
parent e9b6e0b08d
commit 7885025135
Signed by: matteo
GPG key ID: 8576CC1AD97D42DF
2 changed files with 6 additions and 6 deletions

View file

@ -1,28 +0,0 @@
# SPDX-FileCopyrightText: 2021 Matteo Settenvini <matteo.settenvini@montecristosoftware.eu>
# SPDX-License-Identifier: CC0-1.0
FROM docker.io/rust:latest@sha256:4f1d43c216d995c2f734d7c682bc3e2abe3e110961cda4ae0743ce3944e673a2
ENV DEBIAN_FRONTEND noninteractive
RUN apt update && \
apt install -y \
libssl-dev \
pkg-config \
python3-pip \
&& \
rm -rf /var/lib/apt/lists/*
RUN pip3 install reuse
RUN rustup component add rustfmt
RUN cargo install --locked -f -- \
cargo-tarpaulin \
cargo-deny \
cargo2junit \
&& \
rm -rf "${HOME}/.cargo/registry" "${HOME}/.cargo/git"
ENTRYPOINT []
CMD ["/bin/bash"]