mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-12 11:14:57 +02:00
16 lines
218 B
Docker
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"]
|