-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM quay.io/pypa/manylinux2014_aarch64 | ||
|
||
# Install unix-odbc from source. Version installed via YUM is too old | ||
RUN curl https://www.unixodbc.org/unixODBC-2.3.9.tar.gz > unixODBC-2.3.9.tar.gz | ||
RUN tar -xzf unixODBC-2.3.9.tar.gz | ||
RUN cd unixODBC-2.3.9 && ./configure && make && make install | ||
|
||
# RUN yum search unixodbc | ||
# RUN yum install unixODBC.x86_64 -y | ||
|
||
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable | ||
|
||
# Wheels are zip files. Needed to zip it again after editing it | ||
RUN yum install zip -y | ||
|
||
ENV PATH="/root/.cargo/bin:$PATH" |