File: artifact_export.go

package info (click to toggle)
packer 1.6.6%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 32,016 kB
  • sloc: sh: 1,154; python: 619; makefile: 251; ruby: 205; xml: 97
file content (42 lines) | stat: -rw-r--r-- 825 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package docker

import (
	"fmt"
	"os"
)

// ExportArtifact is an Artifact implementation for when a container is
// exported from docker into a single flat file.
type ExportArtifact struct {
	path string
	// StateData should store data such as GeneratedData
	// to be shared with post-processors
	StateData map[string]interface{}
}

func (*ExportArtifact) BuilderId() string {
	return BuilderId
}

func (a *ExportArtifact) Files() []string {
	return []string{a.path}
}

func (*ExportArtifact) Id() string {
	return "Container"
}

func (a *ExportArtifact) String() string {
	return fmt.Sprintf("Exported Docker file: %s", a.path)
}

func (a *ExportArtifact) State(name string) interface{} {
	return a.StateData[name]
}

func (a *ExportArtifact) Destroy() error {
	if a.path != "" {
		return os.Remove(a.path)
	}
	return nil
}