feat: added missing dockerfile and runs.using configuration

This commit is contained in:
Christian Schulze
2023-03-05 22:57:39 +01:00
parent b7241772cd
commit 4cb67b5097
2 changed files with 10 additions and 2 deletions

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM golang:1.19
WORKDIR /src
COPY . .
RUN go build -o /bin/app .
ENTRYPOINT ["/bin/app"]