diff --git a/.drone.yml b/.drone.yml index 3eb75be..e396f52 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,7 +7,7 @@ steps: - name: build image: golang commands: - - go build + - go build -o ett ./ - name: docker image: plugins/docker settings: diff --git a/Dockerfile b/Dockerfile index 46e9224..ffa5a5a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM scratch -COPY ./eventTimeTracking /ett +COPY ./ett /ett #RUN ls -lah / #RUN chmod uog+rwx /ett #RUN /ett diff --git a/Makefile b/Makefile index ce58ba8..1771fc0 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,2 @@ build: - CGO_ENABLED=0 GOOS=linux go build ./ \ No newline at end of file + CGO_ENABLED=0 GOOS=linux go build -o ett ./ \ No newline at end of file