blob: ac2177d185fe1f91bfdc3026fe9d150a5534efbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
FROM ubuntu:bionic
COPY . /pam-u2f
WORKDIR /pam-u2f
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -qq update
RUN apt-get -qq upgrade
RUN apt-get install -qq software-properties-common
RUN add-apt-repository ppa:yubico/stable
RUN apt-get -qq update
RUN apt-get install -qq libudev-dev libssl-dev libfido2-dev
RUN apt-get install -qq build-essential autoconf automake libtool pkg-config
RUN apt-get install -qq gengetopt libpam-dev pamtester
RUN autoreconf -i .
RUN ./configure --disable-man
RUN make clean all install
|