From f8df9b1b874ddd50374bd9f17bc068e6e20df30b Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Mon, 14 Oct 2024 19:36:32 -0700 Subject: [PATCH] this'll fix her --- .drone.yml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 3076ae2..da1b143 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,7 +7,7 @@ steps: - name: run tests image: golang commands: - - go build + - go build -i - go test -p 1 -v ./... trigger: @@ -23,7 +23,7 @@ steps: - name: run tests image: golang commands: - - go build + - go build -i - go test -p 1 -v ./... - name: docker image: plugins/docker diff --git a/Dockerfile b/Dockerfile index 00ba728..755b4dd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN go mod download COPY . . -RUN go build -o /app/hatecomputers +RUN go build -i -o /app/hatecomputers EXPOSE 8080