Created
December 24, 2018 00:43
-
-
Save Shashikant86/d6e0f67f12bd91a52f33e0c72993cc75 to your computer and use it in GitHub Desktop.
Dockerfiles for GitHub Action Swift
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 swift:4.2 | |
| USER root | |
| LABEL "com.github.actions.name"="SwiftPM-GitHubAction" | |
| LABEL "com.github.actions.description"="Testing Swift Packages with Github Actions" | |
| LABEL "com.github.actions.icon"="airplay" | |
| LABEL "com.github.actions.color"="orange" | |
| LABEL "repository"="http://github.com/shashikant86/SwiftPM-GitHubAction" | |
| LABEL "homepage"="http://github.com/actions" | |
| LABEL "maintainer"="Shashikant Jagtap <[email protected]>" | |
| RUN apt-get update && apt-get install -y git | |
| RUN mkdir /SwiftPM-GitHubAction | |
| WORKDIR /SwiftPM-GitHubAction | |
| COPY . /SwiftPM-GitHubAction |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment