dockerfiles/yubico-piv-tool/Dockerfile
Jess Frazelle c4ff0cf58c
cleanup maintainers
Signed-off-by: Jess Frazelle <me@jessfraz.com>
2016-09-19 15:25:05 -07:00

28 lines
619 B
Docker

# Run yubico-piv-tool in a container
#
# docker run --rm -it \
# --device /dev/bus/usb \
# --device /dev/usb
# --name yubico-piv-tool \
# jess/yubico-piv-tool
#
FROM ubuntu:16.04
MAINTAINER Jessie Frazelle <jess@linux.com>
RUN apt-get update && apt-get install -y \
software-properties-common \
--no-install-recommends && \
add-apt-repository ppa:yubico/stable && \
apt-get update && apt-get install -y \
pcscd \
usbutils \
yubico-piv-tool \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /root/
COPY entrypoint.sh /usr/local/bin/
ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]
CMD [ "yubico-piv-tool", "--help" ]