# SPDX-FileCopyrightText: 2021 Heiko Schaefer # SPDX-FileCopyrightText: 2021 Nora Widdecke # SPDX-License-Identifier: CC0-1.0 # Base image for running CI tests against physical OpenPGP cards: # Debian image + build dependencies for Sequoia PGP, and build/run time dependencies for openpgp-card. FROM rust:1-slim-bullseye RUN apt update -y -qq \ && apt install -y -qq --no-install-recommends libpcsclite-dev pkg-config nettle-dev clang libclang-dev pcscd \ && apt clean