Skip to content

Instantly share code, notes, and snippets.

@wshihadeh
Created May 18, 2020 16:01
Show Gist options
  • Save wshihadeh/b7a7bb5318623565cc74109d05793dcd to your computer and use it in GitHub Desktop.
Save wshihadeh/b7a7bb5318623565cc74109d05793dcd to your computer and use it in GitHub Desktop.
Dockerfile
FROM docker:stable
LABEL 'name'='Docker Deployment Action'
LABEL 'maintainer'='Al-waleed Shihadeh <[email protected]>'
LABEL 'com.github.actions.name'='Docker Deployment'
LABEL 'com.github.actions.description'='supports docker-compose and Docker Swarm deployments'
LABEL 'com.github.actions.icon'='send'
LABEL 'com.github.actions.color'='green'
RUN apk --no-cache add openssh-client
COPY docker-entrypoint.sh /docker-entrypoint.sh
ENTRYPOINT ["/docker-entrypoint.sh"]%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment