diff --git a/Dockerfile b/Dockerfile index 8094e41..b42aded 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /go/src/app COPY . . # Build app -RUN go build -o app . +RUN go build -o bin . # Run app -CMD ["./app"] \ No newline at end of file +CMD ["./bin"] \ No newline at end of file