Skip to content
Snippets Groups Projects
Commit ccabac27 authored by lcappelli's avatar lcappelli
Browse files

Update provide-dev-deps to extend provide-CI-deps

Use both provide-deps.sh files in devcontainer:
 * provide-CI-deps.sh install the deps for CI
 * provide-dev-deps.sh install the remaining deps for the devcontainer

Before this update, provide-CI-deps.sh was a subset of provide-dev-deps.sh
parent 3ee32436
No related branches found
No related tags found
1 merge request!19Resolve "Remove dependency from storm2/build project"
......@@ -11,7 +11,8 @@ ARG USER_GID=${USER_UID}
COPY library-scripts/*.sh /tmp/library-scripts/
RUN yum update -y && \
sh /tmp/library-scripts/provide-deps.sh && \
sh /tmp/library-scripts/provide-CI-deps.sh && \
sh /tmp/library-scripts/provide-dev-deps.sh && \
sh /tmp/library-scripts/provide-user.sh ${USERNAME} ${USER_UID} ${USER_GID} && \
yum clean all && rm -rf /var/cache/yum
......
......@@ -5,10 +5,7 @@
set -ex
yum-config-manager --add-repo https://openresty.org/package/centos/openresty.repo
yum -y install \
epel-release \
https://repo.ius.io/ius-release-el7.rpm \
centos-release-scl
......@@ -19,21 +16,6 @@ yum -y install \
tar \
sudo \
file \
gcc-c++ \
GeoIP-devel \
gd-devel \
gettext \
ccache \
libxslt-devel \
lcov \
perl-ExtUtils-Embed \
perl-Test-Nginx \
perl-Digest-SHA \
readline-devel \
boost-devel \
voms-devel \
make \
patch \
less \
git236 \
devtoolset-10
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