dockerfiles/yubico-piv-tool/Dockerfile
Jess Frazelle 102da0ff33
update base images
Signed-off-by: Jess Frazelle <me@jessfraz.com>
2016-09-19 11:31:11 -07: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:16.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" ]