This commit is contained in:
Сюткина Дарья Александровна (4047910) 2024-01-03 17:57:20 +04:00
commit ae76a60016
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,15 @@
FROM jenkins/inbound-agent
USER root
RUN apt-get update ;\
apt-get -y install lsb-release procps wget sudo git apt-transport-https ca-certificates curl gnupg2 software-properties-common
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg ;\
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian bookworm stable" | sudo tee /etc/apt/sources.list.d/docker.list ;\
apt-get update ;\
apt-get -y install docker-ce docker-ce-cli docker-ce-rootless-extras docker-buildx-plugin
RUN sudo curl -sL https://deb.nodesource.com/setup_20.x -o nodesource_setup.sh ;\
sudo bash nodesource_setup.sh ;\
apt-get -y install nodejs

21
publish.sh Normal file
View File

@ -0,0 +1,21 @@
#!/bin/sh
name="cicd/jenkins-nodejs-agent"
tag="1.0.0"
harborurl="harbor-wtkp3fsbv6.vertexa.devbay.tech"
user="'robot$jenkins'"
password="'ZrzsVIAeueW1p0alpAnPfM5CDtaRVVKz'"
echo "-------------------------------------------"
echo "login"
docker login $harborurl -u $user -p $password
echo "-------------------------------------------"
echo "build"
docker build -t $name:$tag .
echo "-------------------------------------------"
echo "tag"
echo "-------------------------------------------"
docker tag $name:$tag $harborurl/$name:$tag
echo "-------------------------------------------"
echo "push"
echo "-------------------------------------------"
docker push $harborurl/$name:$tag