mirror of
https://github.com/polhenarejos/pico-hsm.git
synced 2026-08-23 05:06:53 +01:00
61 lines
1.2 KiB
Docker
61 lines
1.2 KiB
Docker
FROM debian:bookworm
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt update && apt upgrade -y
|
|
RUN apt install -y apt-utils
|
|
RUN apt autoremove -y
|
|
RUN rm -rf /var/cache/apt/archives/*
|
|
RUN apt install -y libccid \
|
|
libpcsclite-dev \
|
|
git \
|
|
autoconf \
|
|
pkg-config \
|
|
libtool \
|
|
help2man \
|
|
automake \
|
|
gcc \
|
|
make \
|
|
build-essential \
|
|
python3 \
|
|
python3-pip \
|
|
swig \
|
|
libssl-dev \
|
|
cmake \
|
|
libtss2-dev \
|
|
tpm2-tools \
|
|
swtpm \
|
|
swtpm-tools \
|
|
vsmartcard-vpcd \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
RUN pip install --break-system-packages \
|
|
pytest \
|
|
pycvc \
|
|
cryptography \
|
|
base58 \
|
|
pyusb \
|
|
pyscard \
|
|
libusb \
|
|
libusb_package \
|
|
lz4
|
|
WORKDIR /
|
|
RUN git clone https://github.com/OpenSC/OpenSC
|
|
WORKDIR /OpenSC
|
|
RUN git checkout tags/0.27.1
|
|
RUN ./bootstrap
|
|
RUN ./configure --enable-openssl
|
|
RUN make -j `nproc`
|
|
RUN make install
|
|
RUN make clean
|
|
RUN ldconfig
|
|
WORKDIR /
|
|
RUN git clone https://github.com/CardContact/sc-hsm-embedded
|
|
WORKDIR /sc-hsm-embedded
|
|
RUN autoreconf -fi
|
|
RUN ./configure
|
|
RUN make -j `nproc`
|
|
RUN make install
|
|
RUN cp ./src/tests/sc-hsm-pkcs11-test /usr/local/bin/sc-hsm-pkcs11-test
|
|
RUN make clean
|
|
WORKDIR /
|