Skip to content

Instantly share code, notes, and snippets.

@Shashikant86
Created December 24, 2018 00:43
Show Gist options
  • Select an option

  • Save Shashikant86/d6e0f67f12bd91a52f33e0c72993cc75 to your computer and use it in GitHub Desktop.

Select an option

Save Shashikant86/d6e0f67f12bd91a52f33e0c72993cc75 to your computer and use it in GitHub Desktop.
Dockerfiles for GitHub Action Swift
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