1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 18:51:24 +00:00
dockerfiles/stunnel/Dockerfile
2016-07-11 13:14:59 +08:00

16 lines
269 B
Docker

#
# Dockerfile for stunnel
#
FROM alpine
MAINTAINER kev <noreply@easypi.info>
RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing stunnel
COPY docker-entrypoint.sh /entrypoint.sh
VOLUME /etc/stunnel
ENTRYPOINT ["/entrypoint.sh"]