From 24cfa35ecb220252cb27819e1400e08b82ff52cb Mon Sep 17 00:00:00 2001 From: Steven Agyekum Date: Wed, 4 Dec 2019 18:26:19 +0100 Subject: [PATCH] remove docker labeling --- Dockerfile | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/Dockerfile b/Dockerfile index 764a964..fff8dcf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,27 +1,12 @@ FROM ubuntu:latest - # Update RUN apt-get update - # Install packages RUN apt-get -yq install rsync openssh-client - -# Label -LABEL "com.github.actions.name"="rsync deployments" -LABEL "com.github.actions.description"="For deploying code to a webserver via rsync over ssh" -LABEL "com.github.actions.icon"="truck" -LABEL "com.github.actions.color"="yellow" - -LABEL "repository"="https://github.com/Burnett01/rsync-deployments" -LABEL "homepage"="https://github.com/Burnett01/rsync-deployments" -LABEL "maintainer"="Contention & Burnett01" - - # Copy entrypoint ADD entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] -