62 lines
1.8 KiB
Go
62 lines
1.8 KiB
Go
/*
|
|
Copyright 2018 Google LLC
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package buildcontext
|
|
|
|
import (
|
|
"compress/gzip"
|
|
"fmt"
|
|
"os"
|
|
|
|
kConfig "github.com/GoogleContainerTools/kaniko/pkg/config"
|
|
"github.com/GoogleContainerTools/kaniko/pkg/util"
|
|
"github.com/pkg/errors"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// Tar unifies calls to download and unpack the build context.
|
|
type Tar struct {
|
|
context string
|
|
}
|
|
|
|
// UnpackTarFromBuildContext unpack the compressed tar file
|
|
func (t *Tar) UnpackTarFromBuildContext() (string, error) {
|
|
directory := kConfig.BuildContextDir
|
|
if err := os.MkdirAll(directory, 0750); err != nil {
|
|
return "", errors.Wrap(err, "unpacking tar from build context")
|
|
}
|
|
if t.context == "stdin" {
|
|
fi, _ := os.Stdin.Stat()
|
|
if (fi.Mode() & os.ModeCharDevice) != 0 {
|
|
return "", fmt.Errorf("no data found.. don't forget to add the '--interactive, -i' flag")
|
|
}
|
|
logrus.Infof("To simulate EOF and exit, press 'Ctrl+D'")
|
|
// if launched through docker in interactive mode and without piped data
|
|
// process will be stuck here until EOF is sent
|
|
gzr, err := gzip.NewReader(os.Stdin)
|
|
if err != nil {
|
|
return directory, err
|
|
}
|
|
defer gzr.Close()
|
|
_, err = util.UnTar(gzr, directory)
|
|
|
|
return directory, err
|
|
|
|
}
|
|
|
|
return directory, util.UnpackCompressedTar(t.context, directory)
|
|
}
|