dockerfiles/yubico-piv-tool/Dockerfile
Jessica Frazelle e256239308
updates
Signed-off-by: Jessica Frazelle <acidburn@docker.com>
2015-11-23 13:05:19 -08:00

28 lines
621 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:14.04
MAINTAINER Jessica Frazelle <jess@docker.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" ]