Skip to content

Add layer "pull" support via generic code archive download #11

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 1, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
use generic code archives for layer pull support in init binary
  • Loading branch information
dominikschubert committed Jan 31, 2023
commit 08e86db3d7cf4542acab26f51e4024c9f77d3d15
1 change: 1 addition & 0 deletions cmd/localstack/codearchive.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ func DownloadCodeArchive(url string, targetPath string) error {
// download and unzip code archive
log.Infoln("Downloading code archive")
// create tmp directory
// empty string will make use of the default tmp directory
tmpDir, err := os.MkdirTemp("", "localstack-code-archive")
if err != nil {
return err
Expand Down