Skip to content

Instantly share code, notes, and snippets.

@adigunhammedolalekan
Created August 21, 2019 20:13
Show Gist options
  • Save adigunhammedolalekan/e7da1e0d85cf961f5806f05c50662bc6 to your computer and use it in GitHub Desktop.
Save adigunhammedolalekan/e7da1e0d85cf961f5806f05c50662bc6 to your computer and use it in GitHub Desktop.
import "github.com/docker/docker/pkg/archive"
// createBuildContext archive a dir and return an io.Reader
func createBuildContext(path string) (io.Reader, error) {
return archive.Tar(path, archive.Uncompressed)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment