xref: /netbsd-src/external/bsd/pam-u2f/dist/tests/bionic/Dockerfile (revision 540ca2718c85d7b6631d382e3e93f4dc91e51282)
1FROM ubuntu:bionic
2COPY . /pam-u2f
3WORKDIR /pam-u2f
4ENV DEBIAN_FRONTEND noninteractive
5RUN apt-get -qq update
6RUN apt-get -qq upgrade
7RUN apt-get install -qq  software-properties-common
8RUN add-apt-repository ppa:yubico/stable
9RUN apt-get -qq update
10RUN apt-get install -qq libudev-dev libssl-dev libfido2-dev
11RUN apt-get install -qq build-essential autoconf automake libtool pkg-config
12RUN apt-get install -qq libpam-dev pamtester
13RUN autoreconf -i .
14RUN ./configure --disable-man
15RUN make clean all install
16