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.
2 parents ebe344a + e63b07c commit 2f20477Copy full SHA for 2f20477
el9/Dockerfile
@@ -9,8 +9,8 @@ RUN dnf -y install \
9
openssl-devel \
10
perl-FindBin \
11
python3-pip \
12
+ procps-ng \
13
systemd \
- unixODBC \
14
vim \
15
wget \
16
which
@@ -35,6 +35,14 @@ WORKDIR /
35
COPY get-cmake.sh /get-cmake.sh
36
RUN /get-cmake.sh build
37
38
+RUN wget ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-2.3.11.tar.gz && \
39
+ tar xzf unixODBC-2.3.11.tar.gz && \
40
+ cd unixODBC-2.3.11 && \
41
+ ./configure && make && make install && \
42
+ cd .. && \
43
+ rm -rf unixODBC-2.3.11 && \
44
+ rm -f unixODBC-2.3.11.tar.gz
45
+
46
# cleanup
47
RUN dnf clean all && \
48
rm -rf /tmp/* && \
0 commit comments