Armin Friedl
f4b9c8000f
All checks were successful
continuous-integration/drone/push Build is passing
13 lines
242 B
Docker
13 lines
242 B
Docker
FROM busybox
|
|
|
|
RUN mkdir -p /usr/local/bin
|
|
|
|
COPY ./coffer-client /usr/local/bin
|
|
COPY ./client.cert .
|
|
|
|
ENTRYPOINT ["coffer-client"]
|
|
|
|
CMD ["--certificate", "client.cert", \
|
|
"--server-address", "server:9187", \
|
|
"--", \
|
|
"printenv"]
|