mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-26 05:27:27 +02:00
16 lines
284 B
Docker
16 lines
284 B
Docker
|
#
|
||
|
# Dockerfile for stunnel-arm
|
||
|
#
|
||
|
|
||
|
FROM easypi/alpine-arm
|
||
|
|
||
|
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"]
|