updated some dockerfiles

This commit is contained in:
2023-10-20 23:44:27 +09:00
parent b477d12b38
commit 1d2d7f96cd
6 changed files with 32 additions and 26 deletions

View File

@ -0,0 +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 echo 'PATH=$PATH:/opt/go/bin' > /etc/profile.d/go.sh