Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Bobiesco #72

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
wip
Gre8t committed Apr 19, 2023
commit 0b89c8d94f843bca076940a34c9d352bb433f09f
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -3,7 +3,8 @@ From alpinelinux/golang
WORKDIR /app
COPY . /app
RUN whoami
RUN go mod init github.com/thedevopsschool/user-service
RUN go mod init github.com/thedevopsschool/user-service\
RUN chown build go.mod
RUN go mod tidy
RUN go build .
CMD ["/app/user-service"]