mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 22:32:43 -04:00
16 lines
645 B
Docker
16 lines
645 B
Docker
# Copyright (c) 2019-2022 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
|
|
ENV CC=clang-14
|
|
ENV CXX=clang++-14
|
|
RUN apt-get update
|
|
RUN apt-get install -y cmake git libssl-dev libudev-dev make pkg-config
|
|
RUN apt-get install -y libpcsclite-dev zlib1g-dev software-properties-common
|
|
RUN git clone --branch v0.9.0 --depth=1 https://github.com/PJK/libcbor
|
|
RUN git clone --depth=1 https://github.com/yubico/libfido2
|
|
WORKDIR /libfido2
|
|
RUN ./.actions/setup_clang "${CC}"
|
|
RUN ./fuzz/build-coverage /libcbor /libfido2
|