Start adding signer containers
This is work in progress to add the signer components
This commit is contained in:
parent
f9b0eb5195
commit
e8ad6b9ba7
8 changed files with 189 additions and 3 deletions
26
signer_client.Dockerfile
Normal file
26
signer_client.Dockerfile
Normal file
|
@ -0,0 +1,26 @@
|
|||
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"]
|
Loading…
Add table
Add a link
Reference in a new issue