Skip to content

Commit 8669eda

Browse files
NW752
1 parent c299383 commit 8669eda

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

Dockerfile

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,26 @@ LABEL de.itsfullofstars.sapnwdocker.vendor="Tobias Hofmann"
66
LABEL 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
1212
RUN 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
2121
RUN 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
2525
RUN echo $'#!/usr/bin/expect -f \n\
2626
spawn ./install.sh -s -k \n\
27-
set PASSWORD "s@pABAP751"\n\
27+
set PASSWORD "s@pABAP752"\n\
2828
set timeout -1\n\
29-
expect "Hit enter to continue!" \n\
30-
send "\\rq" \n\
3129
expect "Do you agree to the above license terms? yes/no:"\n\
3230
send "yes\\r"\n\
3331
expect "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

Comments
 (0)