From c21f86a69fc0a869f624d324b51a3260290f6418 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Fri, 20 Oct 2023 23:51:47 +0900 Subject: [PATCH] fixed Dockerfile.dev-go-centos7 --- docker-images/Dockerfile.dev-go-centos7 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-images/Dockerfile.dev-go-centos7 b/docker-images/Dockerfile.dev-go-centos7 index fb81d0c..1190eb6 100644 --- a/docker-images/Dockerfile.dev-go-centos7 +++ b/docker-images/Dockerfile.dev-go-centos7 @@ -1,5 +1,5 @@ FROM centos:centos7.9.2009 -RUN ulimit -n 1024 && yum -y install wget curl make gcc rpm-build git libcap-devel && cd /opt && wget https://go.dev/dl/go1.20.6.linux-amd64.tar.gz && tar -zxvf go1.20.6.linux-amd64.tar.gz && rm -f go1.20.6.linux-amd64.tar.gz +RUN ulimit -n 1024 && yum -y install wget curl make gcc rpm-build git libpcap-devel && cd /opt && wget https://go.dev/dl/go1.20.6.linux-amd64.tar.gz && tar -zxvf go1.20.6.linux-amd64.tar.gz && rm -f go1.20.6.linux-amd64.tar.gz RUN echo 'PATH=$PATH:/opt/go/bin' > /etc/profile.d/go.sh