From 7bce2de99b89f3f93b6785109cb1909368cc453b Mon Sep 17 00:00:00 2001 From: kekskurse Date: Fri, 14 Jan 2022 22:16:23 +0100 Subject: [PATCH] Stuff --- .drone.yml | 2 +- Dockerfile | 2 +- Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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