Skip to content

Commit

Permalink
Merge pull request #236 from markalbrand56/backend
Browse files Browse the repository at this point in the history
Backend Sprint 9
  • Loading branch information
Kojimena authored Nov 9, 2023
2 parents daf7ddd + bcdbd50 commit ced96e1
Show file tree
Hide file tree
Showing 21 changed files with 1,767 additions and 468 deletions.
16 changes: 16 additions & 0 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM golang:1.19
LABEL authors="marka"

WORKDIR /backend

COPY go.mod go.sum ./
RUN go mod download

COPY . .

RUN go build -o backend .

EXPOSE 8080

CMD ["./backend"]
# docker run -p 8080:8080 backend
Loading

0 comments on commit ced96e1

Please sign in to comment.