Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisiliya authored Dec 13, 2023
1 parent 63f8539 commit 6af0e9f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM golang:latest

WORKDIR /go/src/app

COPY . .

RUN go get -v ./...
RUN go install -v ./...

CMD ["httpr"]

0 comments on commit 6af0e9f

Please sign in to comment.