1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-29 18:21:24 +00:00
dockerfiles/stunnel/Dockerfile

16 lines
218 B
Docker
Raw Normal View History

2016-07-11 05:14:59 +00:00
#
# Dockerfile for stunnel
#
2020-08-20 10:51:57 +00:00
FROM alpine:3
2016-07-11 05:14:59 +00:00
2020-08-20 10:51:57 +00:00
MAINTAINER EasyPi Software Foundation
2016-07-11 05:14:59 +00:00
2017-04-28 15:35:05 +00:00
RUN apk add --no-cache stunnel libressl
2016-07-11 05:14:59 +00:00
COPY docker-entrypoint.sh /entrypoint.sh
VOLUME /etc/stunnel
ENTRYPOINT ["/entrypoint.sh"]