mirror of
https://github.com/Burnett01/rsync-deployments.git
synced 2024-11-22 07:23:46 +01:00
remove docker labeling
This commit is contained in:
parent
530c686e9a
commit
24cfa35ecb
1 changed files with 0 additions and 15 deletions
15
Dockerfile
15
Dockerfile
|
@ -1,27 +1,12 @@
|
||||||
FROM ubuntu:latest
|
FROM ubuntu:latest
|
||||||
|
|
||||||
|
|
||||||
# Update
|
# Update
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
|
|
||||||
|
|
||||||
# Install packages
|
# Install packages
|
||||||
RUN apt-get -yq install rsync openssh-client
|
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 <hello@contention.agency> & Burnett01"
|
|
||||||
|
|
||||||
|
|
||||||
# Copy entrypoint
|
# Copy entrypoint
|
||||||
ADD entrypoint.sh /entrypoint.sh
|
ADD entrypoint.sh /entrypoint.sh
|
||||||
RUN chmod +x /entrypoint.sh
|
RUN chmod +x /entrypoint.sh
|
||||||
ENTRYPOINT ["/entrypoint.sh"]
|
ENTRYPOINT ["/entrypoint.sh"]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue