-
Notifications
You must be signed in to change notification settings - Fork 114
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
e3c6b26
commit e3f28c0
Showing
3 changed files
with
27 additions
and
1 deletion.
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,16 @@ | ||
# docker build -t oneapi-gcc13 . | ||
# docker run -ti --rm oneapi-gcc13 | ||
FROM intel/oneapi:latest | ||
RUN apt update | ||
RUN add-apt-repository ppa:ubuntu-toolchain-r/test | ||
RUN apt install -y g++-13 | ||
RUN apt install -y libgtest-dev | ||
RUN apt install -y libcxxopts-dev | ||
|
||
RUN apt remove --purge --auto-remove -y cmake | ||
RUN wget https://cmake.org/files/v3.29/cmake-3.29.2.tar.gz | ||
RUN tar -xzvf cmake-3.29.2.tar.gz && cd cmake-3.29.2 && ./bootstrap && make -j12 && make install | ||
|
||
RUN apt install -y libfmt-dev | ||
|
||
CMD /bin/bash |
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