update for smartgears changes

master
Lucio Lelii 2 years ago
parent 1e25317197
commit 7e14a564ef

@ -2,6 +2,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
# Changelog for Smartgears Distribution
## [v3.4.3-SNAPSHOT] - 2022-01-19
- enabled policy check on smartgears
- container configuration for test added
## [v3.4.2] - 2021-11-08
- common-smartgrears library updated

@ -0,0 +1,12 @@
FROM tomcat:8.5.47-jdk8-openjdk
ARG nexuspath
ARG filename
ARG version
WORKDIR /
RUN curl -k $nexuspath/$filename.tar.gz --output /smartgears-distro.tar.gz
RUN tar zxvf /smartgears-distro.tar.gz
RUN export CATALINA_HOME=/usr/local/tomcat
RUN mv smartgears-distribution-$version smartgears-distribution
ENV GHN_HOME=./smartgears-distribution
RUN ./smartgears-distribution/install -s tomcat

@ -9,7 +9,7 @@
<groupId>org.gcube.distribution</groupId>
<artifactId>smartgears-distribution</artifactId>
<version>3.4.2</version>
<version>3.4.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>A distribution for the SmartGears Framework</name>

Loading…
Cancel
Save