-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathdockerfile.go
More file actions
163 lines (142 loc) · 3.72 KB
/
dockerfile.go
File metadata and controls
163 lines (142 loc) · 3.72 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package dockerfile
import (
"bytes"
"encoding/json"
"fmt"
"os"
"path/filepath"
"strconv"
"strings"
docker "github.com/fsouza/go-dockerclient"
"github.com/mintoolkit/mint/pkg/consts"
v "github.com/mintoolkit/mint/pkg/version"
)
// note: dup (todo: refactor)
const (
//MAINTAINER:
instPrefixMaintainer = "MAINTAINER "
//ENTRYPOINT:
instTypeEntrypoint = "ENTRYPOINT"
instPrefixEntrypoint = "ENTRYPOINT "
//CMD:
instTypeCmd = "CMD"
instPrefixCmd = "CMD "
//USER:
instTypeUser = "USER"
instPrefixUser = "USER "
//EXPOSE:
instTypeExpose = "EXPOSE"
instPrefixExpose = "EXPOSE "
//WORKDIR:
instTypeWorkdir = "WORKDIR"
instPrefixWorkdir = "WORKDIR "
//HEALTHCHECK:
instTypeHealthcheck = "HEALTHCHECK"
instPrefixHealthcheck = "HEALTHCHECK "
//ONBUILD:
instTypeOnbuild = "ONBUILD"
//RUN:
instTypeRun = "RUN"
instPrefixRun = "RUN "
//ADD:
instTypeAdd = "ADD"
//COPY:
instTypeCopy = "COPY"
)
// GenerateFromInfo builds and saves a Dockerfile file object
func GenerateFromInfo(
location string,
volumes map[string]struct{},
workingDir string,
env []string,
labels map[string]string,
user string,
exposedPorts map[docker.Port]struct{},
entrypoint []string,
cmd []string,
hasData bool,
tarData bool) error {
dockerfileLocation := filepath.Join(location, "Dockerfile")
var dfData bytes.Buffer
dfData.WriteString("FROM scratch\n")
dsInfoLabel := fmt.Sprintf("LABEL %s=\"%s\"\n", consts.DSLabelVersion, v.Current())
dfData.WriteString(dsInfoLabel)
if len(labels) > 0 {
for name, value := range labels {
var encoded bytes.Buffer
encoder := json.NewEncoder(&encoded)
encoder.SetEscapeHTML(false)
encoder.Encode(value)
labelInfo := fmt.Sprintf("LABEL %s=%s\n", name, encoded.String())
dfData.WriteString(labelInfo)
}
dfData.WriteByte('\n')
}
if len(env) > 0 {
for _, envInfo := range env {
if envParts := strings.SplitN(envInfo, "=", 2); len(envParts) > 1 {
dfData.WriteString("ENV ")
envLine := fmt.Sprintf("%s \"%s\"", envParts[0], envParts[1])
dfData.WriteString(envLine)
dfData.WriteByte('\n')
}
}
dfData.WriteByte('\n')
}
if len(volumes) > 0 {
var volumeList []string
for volumeName := range volumes {
volumeList = append(volumeList, strconv.Quote(volumeName))
}
volumeInst := fmt.Sprintf("VOLUME [%s]", strings.Join(volumeList, ","))
dfData.WriteString(volumeInst)
dfData.WriteByte('\n')
}
if hasData {
addData := "COPY files /\n"
if tarData {
addData = "ADD files.tar /\n"
}
dfData.WriteString(addData)
}
if workingDir != "" {
dfData.WriteString(instPrefixWorkdir)
dfData.WriteString(workingDir)
dfData.WriteByte('\n')
}
if user != "" {
dfData.WriteString(instPrefixUser)
dfData.WriteString(user)
dfData.WriteByte('\n')
}
if len(exposedPorts) > 0 {
for portInfo := range exposedPorts {
dfData.WriteString(instPrefixExpose)
dfData.WriteString(string(portInfo))
dfData.WriteByte('\n')
}
}
if len(entrypoint) > 0 {
//TODO: need to make sure the generated ENTRYPOINT is compatible with the original behavior
var quotedEntryPoint []string
for idx := range entrypoint {
quotedEntryPoint = append(quotedEntryPoint, strconv.Quote(entrypoint[idx]))
}
dfData.WriteString("ENTRYPOINT [")
dfData.WriteString(strings.Join(quotedEntryPoint, ","))
dfData.WriteByte(']')
dfData.WriteByte('\n')
}
if len(cmd) > 0 {
//TODO: need to make sure the generated CMD is compatible with the original behavior
var quotedCmd []string
for idx := range cmd {
quotedCmd = append(quotedCmd, strconv.Quote(cmd[idx]))
}
dfData.WriteString("CMD [")
dfData.WriteString(strings.Join(quotedCmd, ","))
dfData.WriteByte(']')
dfData.WriteByte('\n')
}
return os.WriteFile(dockerfileLocation, dfData.Bytes(), 0644)
}