We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 743d3bf commit ccaf801Copy full SHA for ccaf801
Dockerfile
@@ -13,7 +13,7 @@ ARG TARGETARCH
13
14
WORKDIR /app
15
16
-COPY ./config .
+COPY ./config ./config/
17
18
COPY dist/${TARGETOS}/${TARGETARCH}/app .
19
utils/utils.go
@@ -89,7 +89,7 @@ func GetJson[T any](jsonStr string) (T) {
89
err := json.Unmarshal([]byte(jsonStr), &result)
90
91
if err != nil {
92
- // JSON is empty
+ // YML is empty
93
}
94
95
return result
@@ -109,7 +109,7 @@ func GetYml[T any](ymlStr string) (T) {
109
err := yaml.Unmarshal([]byte(ymlStr), &result)
110
111
112
113
114
115
0 commit comments