Fixed build

This commit is contained in:
mitch 2022-01-04 20:27:35 -05:00
parent 350377b364
commit 02fa79e9ce
2 changed files with 3 additions and 5 deletions

View File

@ -4,12 +4,10 @@ RUN mkdir /tmp/redisloadtest
WORKDIR /tmp/redisloadtest WORKDIR /tmp/redisloadtest
COPY go.mod . COPY . .
COPY go.sum .
COPY redisLoadTest.go .
RUN set -ex \ RUN set -ex \
&& go build -o redisLoadTest redisLoadTest.go && go build -o redisLoadTest
FROM golang:1.17.5-bullseye AS redisloadtest FROM golang:1.17.5-bullseye AS redisloadtest

View File

@ -7,7 +7,7 @@ build:
# Local Build # Local Build
#################################################### ####################################################
build-local: build-local:
go build -o redisLoadTest redisLoadTest.go go build -o redisLoadTest
#################################################### ####################################################
# Prune docker environment of stale resources # Prune docker environment of stale resources
#################################################### ####################################################