mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:36 +02:00
16 lines
211 B
Docker
16 lines
211 B
Docker
#
|
|
# Dockerfile for stunnel
|
|
#
|
|
|
|
FROM alpine:edge
|
|
|
|
MAINTAINER kev <noreply@easypi.info>
|
|
|
|
RUN apk add --no-cache stunnel
|
|
|
|
COPY docker-entrypoint.sh /entrypoint.sh
|
|
|
|
VOLUME /etc/stunnel
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|