feat(core): init and Dockerfile

This commit is contained in:
2025-11-19 12:24:39 +01:00
parent 8dbe1d3444
commit 8c1d1355c9
3 changed files with 19 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM golang:1.25
WORKDIR /usr/src/app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN go build -v -o /usr/local/bin/svg-templater ./...
CMD ["svg-templater"]

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module svg-templater
go 1.24.9

5
main.go Normal file
View File

@@ -0,0 +1,5 @@
package main
func main() {
}