1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00
dockerfiles/stunnel/Dockerfile
2020-08-20 18:51:57 +08:00

16 lines
218 B
Docker

#
# Dockerfile for stunnel
#
FROM alpine:3
MAINTAINER EasyPi Software Foundation
RUN apk add --no-cache stunnel libressl
COPY docker-entrypoint.sh /entrypoint.sh
VOLUME /etc/stunnel
ENTRYPOINT ["/entrypoint.sh"]