Merge pull request #1 from vcscsvcscs/feature/create-kubernetes-deployments

Feature Create kubernetes deployments
This commit is contained in:
Vargha Csongor
2024-04-14 00:55:29 +02:00
committed by GitHub
48 changed files with 3494 additions and 45 deletions

13
backend/dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM golang:1.22-alpine as build
WORKDIR /app
COPY . .
RUN GOOS=linux GOARCH=arm64 go build -o backend
FROM busybox
COPY --from=build /app/backend /app/
CMD [ "/app/backend" ]