-
-
Notifications
You must be signed in to change notification settings - Fork 146
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
1 changed file
with
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
FROM nvcr.io/nvidia/tensorrt:24.12-py3 | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN ln -s -f /bin/true /usr/bin/chfn | ||
RUN echo "resolvconf resolvconf/linkify-resolvconf boolean false" | debconf-set-selections | ||
|
||
RUN apt-get update && apt-get upgrade -y && apt-get install -y \ | ||
libcurl4-openssl-dev \ | ||
wget \ | ||
zlib1g-dev \ | ||
pkg-config \ | ||
build-essential libopenblas-dev \ | ||
clang lld && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
COPY .. /tmp/YaneuraOu | ||
WORKDIR /tmp/YaneuraOu | ||
RUN cd /tmp/YaneuraOu/source && \ | ||
make -j $(nproc) tournament COMPILER=clang++ YANEURAOU_EDITION=YANEURAOU_ENGINE_DEEP_TENSOR_RT_UBUNTU ENGINE_NAME="FukauraOuV8.60" && \ | ||
cp ./YaneuraOu-by-gcc /usr/local/bin && \ | ||
rm -rf /tmp/YaneuraOu | ||
|
||
WORKDIR /root | ||
|