WIP: Added cuddle

This commit is contained in:
Kasper Juul Hermansen 2022-09-12 22:25:32 +02:00
parent 28941c3911
commit 539ec4baa1
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912
3 changed files with 10 additions and 2 deletions

1
.gitignore vendored Normal file
View File

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

View File

@ -3,5 +3,5 @@
base: "git@git.front.kjuulh.io:kjuulh/cuddle-go-plan.git"
vars:
service: "cibus-backend"
deployments: "git@git.front.kjuulh.io:cibus/deployments.git"
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" ]