commit 1361b921a4ebfea45490eb7749c8409210dc00c8 Author: Ian Fijolek Date: Wed Jan 3 11:23:50 2024 -0800 Build stunnel image diff --git a/.drone.yaml b/.drone.yaml new file mode 100644 index 0000000..c08553b --- /dev/null +++ b/.drone.yaml @@ -0,0 +1,50 @@ +--- +kind: pipeline +name: publish + +trigger: + event: + - push + - tag + refs: + - refs/heads/master + - refs/tags/v* + +steps: + - name: push images + image: thegeeklab/drone-docker-buildx + settings: + repo: iamthefij/stunnel + auto_tag: true + platforms: + - linux/amd64 + - linux/arm64 + - linux/arm + username: + from_secret: docker_username + password: + from_secret: docker_password + +--- +kind: pipeline +name: notify + +depends_on: + - publish + +trigger: + status: + - failure + +steps: + + - name: notify + image: drillster/drone-email + settings: + host: + from_secret: SMTP_HOST # pragma: whitelist secret + username: + from_secret: SMTP_USER # pragma: whitelist secret + password: + from_secret: SMTP_PASS # pragma: whitelist secret + from: drone@iamthefij.com diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4e05467 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM alpine:3 + +RUN apk add --no-cache stunnel~=5 + +ENTRYPOINT ["stunnel"]