This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-satellite.git
The following commit(s) were added to refs/heads/main by this push:
new 9004c9d Build Docker image based on Go 1.19 (#133)
9004c9d is described below
commit 9004c9dc44298b72021c1c62efd8de57e5acbae1
Author: kezhenxu94 <[email protected]>
AuthorDate: Mon May 22 18:48:09 2023 +0800
Build Docker image based on Go 1.19 (#133)
---
CHANGES.md | 1 +
docker/Dockerfile | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/CHANGES.md b/CHANGES.md
index 7d0cf87..f2e2bea 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -13,6 +13,7 @@ Release Notes.
#### Bug Fixes
* Fix [CVE-2022-41721](https://avd.aquasec.com/nvd/cve-2022-41721).
+* Use Go 19 to build the Docker image to fix CVEs.
#### Issues and PR
- All issues are
[here](https://github.com/apache/skywalking/milestone/170?closed=1)
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 683d400..ca220b8 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM golang:1.18 as build
+FROM golang:1.19 as build
ARG VERSION="latest"