From e8ea5ee34f94986a9e769e3ec69a93208519259a Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Sun, 17 Feb 2019 16:56:39 +0800 Subject: [PATCH] chore: update base docker image. --- Dockerfile | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index d27142d..dd9b39e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,21 +1,15 @@ -FROM golang:1.11 +FROM appleboy/drone-telegram:1.4.1-linux-amd64 # Github labels LABEL "com.github.actions.name"="Telegram Notify" -LABEL "com.github.actions.description"="Sending a Telegram notification message" +LABEL "com.github.actions.description"="Sending a Telegram message" LABEL "com.github.actions.icon"="message-square" LABEL "com.github.actions.color"="blue" -LABEL "repository"="https://github.com/Ilshidur/actions" +LABEL "repository"="https://github.com/telegram-action" LABEL "homepage"="https://github.com/appleboy/telegram-action" LABEL "maintainer"="Bo-Yi Wu " -LABEL "version"="0.0.1" - -ENV TELEGRAM_VERSION=1.4.1 -ENV OS_ARCH=linux-amd64 - -RUN wget https://github.com/appleboy/drone-telegram/releases/download/${TELEGRAM_VERSION}/drone-telegram-${TELEGRAM_VERSION}-${OS_ARCH} -O /bin/drone-telegram -RUN chmod +x /bin/drone-telegram +LABEL "version"="0.0.2" ADD entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh