topic/cleaning #4

Merged
shah merged 23 commits from topic/cleaning into master 2022-05-31 14:53:59 +00:00
2 changed files with 5 additions and 5 deletions
Showing only changes of commit ede359bcd8 - Show all commits

View file

@ -5,8 +5,8 @@ WORKDIR /go/src/app/cmd
ADD . /go/src/app ADD . /go/src/app
RUN go get -d -v #RUN go get -d -v
Run go build -o bins/genityapp #Run go build -o bins/genityapp
CMD ["bins/./genityapp"] CMD ["/go/src/app/bins/./genityapp"]

View file

@ -5,6 +5,6 @@ run: build
docker-compose up docker-compose up
build-binary: build-binary:
GOOS=linux GOARCH=amd64 go build -o bins/genityapp -v cmd/genityapp/* GOOS=linux GOARCH=amd64 go build -o bins/genityapp -v cmd/*
.PHONY: build-binary run build .PHONY: build-binary run build