Browse Source

Basic running Dockerfile

pull/340/head
Dan Schaper 8 years ago
parent
commit
b4cd6e7b87
No known key found for this signature in database GPG Key ID: FFF1A1AD0113C344
1 changed files with 7 additions and 3 deletions
  1. +7
    -3
      Dockerfile

+ 7
- 3
Dockerfile View File

@ -1,9 +1,13 @@
FROM alpine:3.6
WORKDIR /etc/getssl
COPY getssl .
ENV WORKING_DIR="/root/getssl"
RUN apk --no-cache --virtual .run-depends add \
bash \
curl \
openssl
COPY getssl /usr/local/bin/getssl
ENTRYPOINT [ "/usr/local/bin/getssl", "--nocheck" ]
CMD [ "--help" ]

Loading…
Cancel
Save