mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
git-subtree-dir: contrib/libfido2 git-subtree-mainline:d586c978b9git-subtree-split:a58dee945a
12 lines
533 B
Docker
12 lines
533 B
Docker
# Copyright (c) 2019 Yubico AB. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
FROM ubuntu:focal
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update
|
|
RUN apt-get install -y clang-11 cmake git libssl-dev libudev-dev make pkg-config
|
|
RUN apt-get install -y zlib1g-dev
|
|
RUN git clone --branch v0.8.0 https://github.com/PJK/libcbor
|
|
RUN git clone https://github.com/yubico/libfido2
|
|
RUN CC=clang-11 CXX=clang++-11 /libfido2/fuzz/build-coverage /libcbor /libfido2
|