-
Notifications
You must be signed in to change notification settings - Fork 791
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error when running 5/12 oracle #209
Comments
I'm having the same issue |
i'm having also same issue |
Hi there, I managed to fix this problem using the dockerfile below:
and executed the following commands:
Enjoy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Dockerfile:25
24 | WORKDIR /opt/oracle
25 | >>> RUN wget https://download.oracle.com/otn_software/linux/instantclient/instantclient-basiclite-linuxx64.zip
26 | >>> && wget https://download.oracle.com/otn_software/linux/instantclient/instantclient-sdk-linuxx64.zip
27 | >>> && unzip instantclient-basiclite-linuxx64.zip
28 | >>> && rm -f instantclient-basiclite-linuxx64.zip
29 | >>> && unzip instantclient-sdk-linuxx64.zip
30 | >>> && rm -f instantclient-sdk-linuxx64.zip
31 | >>> && cd /opt/oracle/instantclient_*
32 | >>> && rm -f jdbc occi mysql *README jar uidrvci genezi adrci
33 | >>> && echo /opt/oracle/instantclient_ > /etc/ld.so.conf.d/oracle-instantclient.conf
34 | >>> && ldconfig
35 |
ERROR: failed to solve: process "/bin/sh -c wget https://download.oracle.com/otn_software/linux/instantclient/instantclient-basiclite-linuxx64.zip && wget https://download.oracle.com/otn_software/linux/instantclient/instantclient-sdk-linuxx64.zip && unzip instantclient-basiclite-linuxx64.zip && rm -f instantclient-basiclite-linuxx64.zip && unzip instantclient-sdk-linuxx64.zip && rm -f instantclient-sdk-linuxx64.zip && cd /opt/oracle/instantclient_* && rm -f jdbc occi mysql *README jar uidrvci genezi adrci && echo /opt/oracle/instantclient_ > /etc/ld.so.conf.d/oracle-instantclient.conf && ldconfig" did not complete successfully: exit code: 1
The text was updated successfully, but these errors were encountered: