mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-11-10 17:43:23 +01:00
4611ed5b48
Integrates the fabfire mechanism for use with the jorisdevice and desfire cards
7 lines
257 B
Docker
7 lines
257 B
Docker
# Setup build image for multistage build
|
|
FROM rust:latest
|
|
# install build deps
|
|
RUN apt-get update && apt-get upgrade -y
|
|
RUN apt-get install -yqq --no-install-recommends capnproto build-essential cmake clang libclang-dev libgsasl7-dev
|
|
|
|
COPY ../nfc_rs /nfc_rs |