SAP JVM 8.1.090 + SAP Cloud Connector 2.14.2
This commit is contained in:
parent
ae48cbfde5
commit
1751e05ee8
2 changed files with 9 additions and 6 deletions
10
Dockerfile
10
Dockerfile
|
@ -11,8 +11,8 @@ FROM centos:7
|
||||||
|
|
||||||
# SAPJVM and SAPCC version
|
# SAPJVM and SAPCC version
|
||||||
# check https://tools.hana.ondemand.com/#cloud
|
# check https://tools.hana.ondemand.com/#cloud
|
||||||
ARG SAPCC_VERSION=2.14.0
|
ARG SAPCC_VERSION=2.14.2
|
||||||
ARG SAPJVM_VERSION=8.1.083
|
ARG SAPJVM_VERSION=8.1.090
|
||||||
|
|
||||||
# working setup dir
|
# working setup dir
|
||||||
WORKDIR /tmp/sapcc
|
WORKDIR /tmp/sapcc
|
||||||
|
@ -23,11 +23,11 @@ RUN yum -y update && yum -y clean all && \
|
||||||
yum -y install which unzip wget net-tools less sudo
|
yum -y install which unzip wget net-tools less sudo
|
||||||
|
|
||||||
# download the SAP JVM and SAPCC
|
# download the SAP JVM and SAPCC
|
||||||
RUN wget --no-check-certificate --no-cookies --header "Cookie: eula_3_1_agreed=tools.hana.ondemand.com/developer-license-3_1.txt; path=/;" -S https://tools.hana.ondemand.com/additional/sapcc-$SAPCC_VERSION.1-linux-x64.zip && \
|
RUN wget --no-check-certificate --no-cookies --header "Cookie: eula_3_1_agreed=tools.hana.ondemand.com/developer-license-3_1.txt; path=/;" -S https://tools.hana.ondemand.com/additional/sapcc-$SAPCC_VERSION-linux-x64.zip && \
|
||||||
wget --no-check-certificate --no-cookies --header "Cookie: eula_3_1_agreed=tools.hana.ondemand.com/developer-license-3_1.txt; path=/;" -S https://tools.hana.ondemand.com/additional/sapjvm-$SAPJVM_VERSION-linux-x64.rpm && \
|
wget --no-check-certificate --no-cookies --header "Cookie: eula_3_1_agreed=tools.hana.ondemand.com/developer-license-3_1.txt; path=/;" -S https://tools.hana.ondemand.com/additional/sapjvm-$SAPJVM_VERSION-linux-x64.rpm && \
|
||||||
unzip sapcc-$SAPCC_VERSION.1-linux-x64.zip && \
|
unzip sapcc-$SAPCC_VERSION-linux-x64.zip && \
|
||||||
rpm -i sapjvm-$SAPJVM_VERSION-linux-x64.rpm && \
|
rpm -i sapjvm-$SAPJVM_VERSION-linux-x64.rpm && \
|
||||||
rpm -i com.sap.scc-ui-$SAPCC_VERSION-8.x86_64.rpm
|
rpm -i com.sap.scc-ui-$SAPCC_VERSION-4.x86_64.rpm
|
||||||
|
|
||||||
# clean up previously installed rpm packages
|
# clean up previously installed rpm packages
|
||||||
RUN rm /tmp/sapcc/*.rpm
|
RUN rm /tmp/sapcc/*.rpm
|
||||||
|
|
|
@ -12,6 +12,9 @@ The goal of this image is to deploy in seconds a fully working SAP Cloud Connect
|
||||||
|
|
||||||
## Release notes
|
## Release notes
|
||||||
|
|
||||||
|
- v6
|
||||||
|
- SAP JVM 8.1.090
|
||||||
|
- SAP Cloud Connector 2.14.2
|
||||||
- v5
|
- v5
|
||||||
- SAP JVM 8.1.083
|
- SAP JVM 8.1.083
|
||||||
- SAP Cloud Connector 2.14.0.1
|
- SAP Cloud Connector 2.14.0.1
|
||||||
|
@ -33,7 +36,7 @@ Docker Hub : https://hub.docker.com/r/makoto2600/sapcc
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
---
|
---
|
||||||
version: "2.1"
|
version: '2.1'
|
||||||
services:
|
services:
|
||||||
sapcc:
|
sapcc:
|
||||||
image: makoto2600/sapcc:latest
|
image: makoto2600/sapcc:latest
|
||||||
|
|
Loading…
Reference in a new issue