CHANGE: go debug working + seperated database and renam,ed module
This commit is contained in:
12
Backend/Dockerfile
Normal file
12
Backend/Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM golang:alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY go.mod go.sum /app/
|
||||
|
||||
RUN go mod download && go mod verify
|
||||
|
||||
COPY . .
|
||||
RUN go build -o /usr/local/bin/app
|
||||
|
||||
CMD ["app"]
|
||||
Reference in New Issue
Block a user