summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-10-14 19:53:20 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-10-14 20:08:22 -0700
commit66fb5845ae18d6f5e852f4e516ccbf5447ababfd (patch)
treeb7ec669b657bb6edcf92da8e65b5301403c6ceaa
parent3735959ff9bad75181436581de3f94b87d3160f8 (diff)
downloadhatecomputers.club-main.tar.gz
hatecomputers.club-main.zip
this'll fix her part 2HEADmain
-rw-r--r--.drone.yml4
-rw-r--r--Dockerfile1
2 files changed, 2 insertions, 3 deletions
diff --git a/.drone.yml b/.drone.yml
index 10064c3..d4a4970 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -7,7 +7,7 @@ steps:
- name: run tests
image: golang
commands:
- - go install -v
+ - go mod download
- go test -p 1 -v ./...
trigger:
@@ -23,7 +23,7 @@ steps:
- name: run tests
image: golang
commands:
- - go install -v
+ - go mod download
- go test -p 1 -v ./...
- name: docker
image: plugins/docker
diff --git a/Dockerfile b/Dockerfile
index 8609a59..00ba728 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -7,7 +7,6 @@ RUN go mod download
COPY . .
-RUN go install -v
RUN go build -o /app/hatecomputers
EXPOSE 8080