We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b62bafd commit 46fb94dCopy full SHA for 46fb94d
Dockerfile-base
@@ -33,6 +33,7 @@ ENV DB_CLIENT=/opt/sqlbot/db_client
33
ARG TARGETARCH
34
RUN apt-get update && \
35
apt-get install -y curl unzip && \
36
+ apt-get install -y libaio1 && \
37
mkdir -p ${DB_CLIENT} && \
38
if [ "$TARGETARCH" = "amd64" ]; then \
39
echo "Building for x86_64"; \
@@ -43,4 +44,5 @@ RUN apt-get update && \
43
44
fi && \
45
unzip app.zip -d ${DB_CLIENT} && \
46
rm app.zip && \
47
+ rm -rf /var/lib/apt/lists/* && \
48
mv ${DB_CLIENT}/instantclient* ${DB_CLIENT}/oracle_instant_client
0 commit comments