背景知识
启动Gitlab Runner时,使用Gitlab提供的官方镜像gitlab/gitlab-runner:latest即可。
Runner以容器的方式启动以后,根据前文我们注册到Gitlab服务器,然后就可以等着执行“流水线”里面的“作业”了。
执行“作业”是要启动另外的容器的,在这个容器里面才能运行dotnet build、dotnet pack甚至docker build之类的命令的。“作业”结束,这个容器会自动销毁。
本文要制作的镜像,是给这一步的临时容器用的。
准备一个空白的制作镜像的目录
这个目录下,将会有3个文件。1个是Docker打包必须的Dockerfile文件,没有扩展名。另外两个是我们引入了微软的集中定义版本号的技术,所依赖的,我们放在镜像里,能让我们编写.gitlab-ci.yml的时候更加规范和便捷。
1、Dockerfile
from ubuntu:20.04
MAINTAINER [email protected]
RUN apt update && apt install -y libcurl4
RUN apt install wget -y
RUN apt install apt-utils -y
RUN ln -s /lib/x86_64-linux-gnu/libdl-2.24.so /lib/x86_64-linux-gnu/libdl.so
RUN wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
RUN dpkg -i packages-microsoft-prod.deb
RUN apt-get update
RUN apt-get install -y apt-transport-https
RUN apt-get update
RUN apt install net-tools -y
RUN apt install bind9-utils -y
RUN apt install vim -y
RUN apt install iputils-ping -y
RUN apt-get install -y dotnet-sdk-5.0
RUN apt-get install -y dotnet-sdk-6.0
RUN apt-get install -y dotnet-sdk-7.0
RUN apt-get install -y dotnet-sdk-8.0
RUN apt-get install docker.io -y
RUN mkdir /root/.ssh
RUN chmod -R 700 /root/.ssh
RUN mkdir /home/public
COPY download-directory-builds-props.sh /home/public
COPY update-remote-version-number.sh /home/public
RUN chmod +x /home/public/*.sh
#现在用docker build会收到警告,要求使用docker buildx
#下边语句来源于https://github.com/docker/buildx?tab=readme-ov-file#dockerfile
COPY --from=docker/buildx-bin /buildx /usr/libexec/docker/cli-plugins/docker-buildx
2、download-directory-builds-props.sh
#!/bin/bash
echo off
rm -vf Directory.*.props
# 文件名
file="urls.txt"
# 检查文件是否存在
if [ ! -f $file ]; then
echo "$file 不存在"
exit 1
fi
# 循环读取文件内容
while IFS= read -r line; do
# echo "$line"
wget -nv -x -nH $line --content-disposition
done < "$file"
# 可以清理nuget的缓存,目前看起来不需要
# 不清理可以节省打包的时间
# dotnet nuget locals plugins-cache --clear
3、update-remote-version-number.sh
#!/bin/bash
echo "登入远程服务器的linux账户名称" S1
echo "分发版本号的http服务器名称或IP" $2
echo "网站根目录的文件夹名称" $3
echo "文件名:" $4
echo "新的版本号" $5
ssh $1@${2} <<EOF
cd /www/wwwroot/$3/version-numbers
sed -i "s/\([0-9\.]\{2,20\}\)/$5/g" $4
构建和推送镜像到仓库
docker build
docker build -t docker.amihome.cn/amihome/gitlab/docker-linux-dotnet8.0:20240227005 .
docker push
docker push docker.amihome.cn/amihome/gitlab/docker-linux-dotnet8.0:20240227005
如果没有登入docker仓库,必须先执行docker login username
标签:RUN,get,Runner,Gitlab,apt,echo,install,docker From: https://www.cnblogs.com/amisoft/p/18038433