-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDockerfile
71 lines (57 loc) · 2.1 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
FROM ubuntu:xenial
# change this to the name of the user you're using on your dekstop, to get X back through the socket
#ENV IMAGEUSER fblaise
#ENV IMAGEUSERUID 1000
USER root
# build deps
# RUN apt-get update \
# && apt-get -y install \
# debhelper \
# python3-pip \
# swig \
# python \
# libpcsclite-dev \
# libssl-dev \
# libffi-dev \
# qtbase5-dev \
# qtdeclarative5-dev \
# qml-module-qtquick-controls \
# qml-module-qtquick-dialogs \
# qml-module-io-thp-pyotherside \
# qml-module-qt-labs-settings \
# libqt5svg5-dev
RUN apt-get update
# add missing packages to have apt-add-repository
RUN apt-get -y install software-properties-common python-software-properties
# install yubikey-tools
RUN apt-add-repository ppa:yubico/stable
RUN apt-get update \
&& apt-get install -y yubikey-manager-qt yubikey-manager yubioath-desktop \
&& apt-get install -y yubikey-personalization-gui yubico-piv-tool yubikey-piv-manager yubikey-personalization \
&& apt-get install -y man
# get yubioath
#RUN wget https://${IMAGEUSER}s.yubico.com/yubioath-desktop/Releases/yubioath-desktop-${YUBIOATH_VERSION}.tar.gz \
# && wget https://${IMAGEUSER}s.yubico.com/yubioath-desktop/Releases/yubioath-desktop-${YUBIOATH_VERSION}.tar.gz.sig
# import the key from the sig..
#RUN gpg --recv `gpg yubioath-desktop-${YUBIOATH_VERSION}.tar.gz.sig 2>&1 |awk '/RSA key/ {print $14}'`
# build yubioath
#RUN gpg --verify yubioath-desktop-${YUBIOATH_VERSION}.tar.gz.sig \
# && tar xf yubioath-desktop-${YUBIOATH_VERSION}.tar.gz \
# && cd yubioath-desktop-${YUBIOATH_VERSION} \
# && qmake -qt=qt5 && make
# run deps
#RUN apt-get -y install \
# python3-yubikey-manager \
# qml-module-io-thp-pyotherside \
# qml-module-qtquick-controls \
# qml-module-qtquick-dialogs \
# qml-module-qt-labs-settings \
# pcscd
RUN rm -rf /var/lib/apt/lists/*
#RUN adduser --gecos ${IMAGEUSER} --uid ${IMAGEUSERUID} --disabled-password ${IMAGEUSER}
#RUN usermod -aG sudo ${IMAGEUSER}
#RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
COPY docker-entrypoint.sh /
#USER ${IMAGEUSER}
#ENV HOME /home/${IMAGEUSER}
ENTRYPOINT ["/docker-entrypoint.sh"]