This is an automated email from the ASF dual-hosted git repository.
kezhenxu94 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-eyes.git
The following commit(s) were added to refs/heads/main by this push:
new 83a4aaf chore: only build linux binary when building inside docker
(#26)
83a4aaf is described below
commit 83a4aaf77308ed49eddf59e88280d72cd8e99a6f
Author: Zhenxu Ke <[email protected]>
AuthorDate: Wed Mar 31 08:42:32 2021 +0800
chore: only build linux binary when building inside docker (#26)
---
Dockerfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Dockerfile b/Dockerfile
index f5e55c3..d1b7166 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -24,7 +24,7 @@ WORKDIR /license-eye
COPY . .
-RUN apk add --no-cache make curl && make build
+RUN apk add --no-cache make curl && make linux
FROM alpine:3 AS bin