summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParamtamtam <[email protected]>2020-12-08 11:56:14 +0500
committerParamtamtam <[email protected]>2020-12-08 11:56:14 +0500
commit243b8400032fdc3b6083ea80e7370902d7b33bcf (patch)
tree9ff3442e1d07f560ad18f9899286336cf089ea72
parent8ca02f90b443947a26b71efebac911b2af3b3ae1 (diff)
Dockerfile updated
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 8fac4b63..5d751f20 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -19,7 +19,7 @@ WORKDIR /src
RUN set -x \
&& go mod download \
&& go mod verify \
- && GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -trimpath -ldflags "$LDFLAGS" -o ./rr ./cmd/rr/main.go
+ && CGO_ENABLED=0 go build -trimpath -ldflags "$LDFLAGS" -o ./rr ./cmd/rr/main.go
# Image page: <https://hub.docker.com/_/alpine>
FROM alpine:3.12