You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
272 B

FROM koalaman/shellcheck-alpine:v0.4.7
ENV PATH=/bin:$PATH
WORKDIR /ssl
RUN apk --no-cache --virtual .run-depends add \
bash \
curl \
drill \
openssl
COPY .bats-core/ /opt/bats/
RUN ln -s /opt/bats/libexec/bats /usr/sbin/bats
ENTRYPOINT ["/bin/ash"]