Skip to content
Snippets Groups Projects
Commit ebed775c authored by Pierre Aubert's avatar Pierre Aubert
Browse files

Merge branch 'add_centos' into 'master'

Add centos

See merge request !5
parents f9613465 e368cbd2
Branches master
No related tags found
1 merge request!5Add centos
Pipeline #234179 passed
......@@ -360,6 +360,26 @@ package_fedora36_hdf5_image:
#- if: $CI_COMMIT_TAG
#########################################
# #
# Fedora 36 package generation #
# #
#########################################
package_centos7_image:
stage: build
image:
name: gcr.io/kaniko-project/executor:debug
entrypoint: [""]
script:
- ls ${CI_PROJECT_DIR}/scripts/
- ${CI_PROJECT_DIR}/scripts/scriptCreateImage.sh docker/centos7/Dockerfile "package_centos7:0.1"
rules:
- when: never
#- when: always
#- if: $CI_COMMIT_TAG
#########################################
# #
# Release generation #
......
# Version 0.1
FROM centos:7
# Ensure use of bash
SHELL ["/bin/bash","-c"]
RUN yum install -y cmake make git wget
RUN yum install -y gcc
RUN yum install -y gcc-c++
RUN yum install -y fedora-packager rpmdevtools
RUN yum clean all
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment