Created
May 18, 2020 16:01
-
-
Save wshihadeh/b7a7bb5318623565cc74109d05793dcd to your computer and use it in GitHub Desktop.
Dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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