Compare commits

...

2 Commits

Author SHA1 Message Date
Kameron Kenny - pi501 d552fda59d tag the image as latest 2024-05-17 12:05:17 -04:00
Kameron Kenny - pi501 0bcb1ca974 add nginx 2024-05-17 12:04:37 -04:00
2 changed files with 9 additions and 1 deletions

View File

@ -16,7 +16,7 @@ ENV PATH="/usr/local/gems/bin:$PATH"
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && apt -y upgrade
RUN apt -y install ruby-full build-essential zlib1g-dev
RUN apt -y install ruby-full build-essential zlib1g-dev nginx git
RUN gem install jekyll bundler
RUN mkdir -p $LOCATION_JEKYLL && mkdir -p $GEM_HOME

8
Jenkinsfile vendored
View File

@ -21,6 +21,14 @@ pipeline {
}
}
}
stage("Tage image as latest") {
steps {
script {
sh 'docker tag docker-registry1.in.thelinuxpro.net:5000/tlp/tlp_jekyll:0.0.1 docker-registry1.in.thelinuxpro.net:5000/tlp/tlp_jekyll:latest --push'
}
}
}
}
}