Datenbank seeder hinzugefügt

This commit is contained in:
2023-11-15 20:42:39 +01:00
parent 54fdfe30a9
commit eac3fd9a9b
9 changed files with 160 additions and 5 deletions

View File

@@ -1,12 +1,11 @@
FROM ubuntu:latest
LABEL authors="Damian"
FROM golang:alpine AS GO_BUILD
LABEL authors="Damian"
COPY ./ /server
WORKDIR /server
ADD go.mod .
ADD go.sum .
RUN go mod download
RUN go install github.com/cosmtrek/air@latest
RUN go build -o /go/bin/server