forked from jan/cacert-devsetup
e8ad6b9ba7
This is work in progress to add the signer components
26 lines
571 B
Docker
26 lines
571 B
Docker
FROM debian:jessie
|
|
|
|
RUN apt-get update \
|
|
&& DEBIAN_FRONTEND=noninteractive \
|
|
apt-get install -y --no-install-recommends \
|
|
gnupg \
|
|
libdbd-mysql-perl \
|
|
libdbi-perl \
|
|
libdevice-serialport-perl \
|
|
libfile-counterfile-perl \
|
|
openssl \
|
|
perl \
|
|
socat \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
VOLUME /srv/certs
|
|
|
|
COPY cacert-software/CommModule/client.pl \
|
|
cacert-software/CommModule/logclean.sh \
|
|
/srv/CommModule/
|
|
COPY docker/run-signer_client usr/local/bin/
|
|
|
|
WORKDIR /srv/CommModule
|
|
|
|
CMD ["run-signer_client"]
|