mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-06 20:19:16 +01:00
102da0ff33
Signed-off-by: Jess Frazelle <me@jessfraz.com>
28 lines
621 B
Docker
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" ]
|