@@ -6,28 +6,26 @@ LABEL de.itsfullofstars.sapnwdocker.vendor="Tobias Hofmann"
66LABEL de.itsfullofstars.sapnwdocker.name="Docker for SAP NetWeaver 7.5x Developer Edition"
77
88# Install dependencies
9- RUN zypper --non-interactive install --replacefiles uuidd expect tcsh which iputils vim hostname tar net-tools iproute2
9+ RUN zypper --non-interactive install --replacefiles uuidd expect tcsh which vim hostname tar net-tools iproute2
1010
1111# Run uuidd
1212RUN mkdir /run/uuidd && chown uuidd /var/run/uuidd && /usr/sbin/uuidd
1313
1414# Copy the downloaded and unrared SAP NW ABAP files to the container
15- COPY NW751 /tmp/NW751 /
15+ COPY NW752 /tmp/NW752 /
1616
17- # We will work from /tmp/NW751
18- WORKDIR /tmp/NW751
17+ # We will work from /tmp/NW752
18+ WORKDIR /tmp/NW752
1919
2020# Make the install.sh from SAP executable
2121RUN chmod +x install.sh
2222
2323# Prepare the shell script to install NW ABAP without asking for user input (using expect)
24- # Note: Password being used is s@pABAP751
24+ # Note: Password being used is s@pABAP752
2525RUN echo $'#!/usr/bin/expect -f \n \
2626spawn ./install.sh -s -k \n \
27- set PASSWORD "s@pABAP751 "\n \
27+ set PASSWORD "s@pABAP752 "\n \
2828set timeout -1\n \
29- expect "Hit enter to continue!" \n \
30- send "\\ rq" \n \
3129expect "Do you agree to the above license terms? yes/no:"\n \
3230send "yes\\ r"\n \
3331expect "Please enter a password:"\n \
@@ -49,4 +47,4 @@ RUN ./run.sh
4947# Command sequence to use this Dockerfile
5048
5149# docker build -t nwabap .
52- # docker run -P -h vhcalnplci --name nwabap751 -it nwabap:latest /bin/bash
50+ # docker run -P -h vhcalnplci --name nwabap752 -it nwabap:latest /bin/bash
0 commit comments