1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-12 11:14:57 +02:00
dockerfiles/stunnel/Dockerfile

16 lines
219 B
Docker
Raw Normal View History

2016-07-11 07:14:59 +02:00
#
# Dockerfile for stunnel
#
2016-11-26 20:59:40 +02:00
FROM alpine:edge
2016-07-11 07:14:59 +02:00
2017-05-08 01:05:07 +02:00
MAINTAINER kev <noreply@easypi.pro>
2016-07-11 07:14:59 +02:00
2017-04-28 17:35:05 +02:00
RUN apk add --no-cache stunnel libressl
2016-07-11 07:14:59 +02:00
COPY docker-entrypoint.sh /entrypoint.sh
VOLUME /etc/stunnel
ENTRYPOINT ["/entrypoint.sh"]