Compare commits

...

2 Commits

Author SHA1 Message Date
539ec4baa1
WIP: Added cuddle 2022-09-12 22:25:32 +02:00
28941c3911
added base cuddle 2022-09-12 22:19:55 +02:00
3 changed files with 15 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.cuddle/

7
cuddle.yaml Normal file
View File

@ -0,0 +1,7 @@
# yaml-language-server: $schema=https://git.front.kjuulh.io/kjuulh/cuddle/raw/branch/main/schemas/base.json
base: "git@git.front.kjuulh.io:kjuulh/cuddle-go-plan.git"
vars:
service: "kraken"
deployments: "git@git.front.kjuulh.io:kjuulh/deployments.git"

View File

@ -0,0 +1,7 @@
FROM golang
COPY . .
RUN go build cmd/server/server.go
CMD [ "server", "start" ]