-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
292bf22
commit af61461
Showing
1 changed file
with
42 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,53 @@ | ||
FROM python:3.12.5-slim | ||
|
||
# define variable version | ||
ARG VERSION=22.1.0 | ||
|
||
RUN apt-get update -y && apt-get install -y curl unzip patchelf | ||
RUN curl -o bin.zip https://globalcdn.nuget.org/packages/dhi.mikecore.linux.ubuntu.22.1.0.nupkg && \ | ||
RUN curl -o bin.zip https://globalcdn.nuget.org/packages/dhi.mikecore.linux.ubuntu.$VERSION.nupkg && \ | ||
unzip bin.zip && \ | ||
mkdir -p /tmp/mikecore/bin/linux && \ | ||
cp -r runtimes/linux-x64/native/* /tmp/mikecore/bin/linux | ||
mkdir -p /app/mikecore/bin/linux && \ | ||
cp -r runtimes/linux-x64/native/* /app/mikecore/bin/linux | ||
|
||
RUN curl -o dfs.zip https://globalcdn.nuget.org/packages/dhi.dfs.$VERSION.nupkg && \ | ||
unzip -o dfs.zip && \ | ||
mkdir -p /app/mikecore/bin/windows && \ | ||
cp -r runtimes/win-x64/native/* /app/mikecore/bin/windows | ||
|
||
RUN pip install pytest | ||
RUN curl -o projections.zip https://globalcdn.nuget.org/packages/dhi.projections.$VERSION.nupkg && \ | ||
unzip -o projections.zip && \ | ||
cp -r runtimes/win-x64/native/* /app/mikecore/bin/windows | ||
|
||
RUN patchelf --set-rpath '$ORIGIN' /tmp/mikecore/bin/linux/libufs.so && \ | ||
patchelf --set-rpath '$ORIGIN' /tmp/mikecore/bin/linux/libeum.so && \ | ||
patchelf --set-rpath '$ORIGIN' /tmp/mikecore/bin/linux/libMzCart.so && \ | ||
patchelf --set-rpath '$ORIGIN' /tmp/mikecore/bin/linux/libpfs2004.so && \ | ||
patchelf --set-rpath '$ORIGIN' /tmp/mikecore/bin/linux/libxerces-c-3.2.so | ||
# DHI.EUM | ||
RUN curl -o eum.zip https://globalcdn.nuget.org/packages/dhi.eum.$VERSION.nupkg && \ | ||
unzip -o eum.zip && \ | ||
cp -r runtimes/win-x64/native/* /app/mikecore/bin/windows | ||
|
||
COPY . /tmp/ | ||
# DHI.DHIfl | ||
RUN curl -o dhifl.zip https://globalcdn.nuget.org/packages/dhi.dhifl.$VERSION.nupkg && \ | ||
unzip -o dhifl.zip && \ | ||
cp -r runtimes/win-x64/native/* /app/mikecore/bin/windows | ||
|
||
RUN pip install /tmp/. | ||
RUN pip install pytest setuptools twine wheel | ||
|
||
COPY ./testdata /app/testdata | ||
COPY ./tests /app/tests | ||
RUN patchelf --set-rpath '$ORIGIN' /app/mikecore/bin/linux/libufs.so && \ | ||
patchelf --set-rpath '$ORIGIN' /app/mikecore/bin/linux/libeum.so && \ | ||
patchelf --set-rpath '$ORIGIN' /app/mikecore/bin/linux/libMzCart.so && \ | ||
patchelf --set-rpath '$ORIGIN' /app/mikecore/bin/linux/libpfs2004.so && \ | ||
patchelf --set-rpath '$ORIGIN' /app/mikecore/bin/linux/libxerces-c-3.2.so | ||
|
||
WORKDIR /app | ||
CMD pytest | ||
|
||
COPY . /app | ||
|
||
RUN pip install . | ||
|
||
RUN pytest | ||
|
||
# build python package | ||
RUN python setup.py bdist_wheel | ||
|
||
# get the wheel file to the host (for example) | ||
# podman build -t mikecore . | ||
# podman run -it --rm -t -v /tmp:/tmp mikecore bash | ||
# cp dist/mikecore-0.3.0-py3-none-any.whl /tmp |