init commit. Makefile. Dokerimage, Dockerfile, Docker-compose.yaml
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
FROM golang:1.22.5
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN go mod tidy
|
||||
|
||||
RUN go build -o bin/api.exe cmd/main.go
|
||||
|
||||
ENTRYPOINT [ "bin/api.exe" ]
|
||||
Reference in New Issue
Block a user