From commits-return-3310-archive-asf-public=cust-asf.ponee.io@skywalking.apache.org Wed Mar 31 00:42:41 2021 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mxout1-ec2-va.apache.org (mxout1-ec2-va.apache.org [3.227.148.255]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id 88A4C18057A for ; Wed, 31 Mar 2021 02:42:41 +0200 (CEST) Received: from mail.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mxout1-ec2-va.apache.org (ASF Mail Server at mxout1-ec2-va.apache.org) with SMTP id C87233F1B3 for ; Wed, 31 Mar 2021 00:42:40 +0000 (UTC) Received: (qmail 78174 invoked by uid 500); 31 Mar 2021 00:42:40 -0000 Mailing-List: contact commits-help@skywalking.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@skywalking.apache.org Delivered-To: mailing list commits@skywalking.apache.org Received: (qmail 78165 invoked by uid 99); 31 Mar 2021 00:42:40 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 31 Mar 2021 00:42:40 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id DFC348E94F; Wed, 31 Mar 2021 00:42:39 +0000 (UTC) Date: Wed, 31 Mar 2021 00:42:39 +0000 To: "commits@skywalking.apache.org" Subject: [skywalking-eyes] branch main updated: chore: only build linux binary when building inside docker (#26) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <161715135967.11190.13395581787594081054@gitbox.apache.org> From: kezhenxu94@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: skywalking-eyes X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Oldrev: 6d6571432d5524368f0d302e2ca592d2cd019e6b X-Git-Newrev: 83a4aaf77308ed49eddf59e88280d72cd8e99a6f X-Git-Rev: 83a4aaf77308ed49eddf59e88280d72cd8e99a6f X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 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