You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN apt-get update && apt-get install -y bc cmake git gnupg gcc g++ python3 sudo wget vim unzip
3
+
RUN apt-get update && apt-get install -y \
4
+
bc cmake git gnupg gcc g++ python3-numpy sudo wget vim unzip \
5
+
libcereal-dev libxc-dev libgtest-dev libgmock-dev
4
6
5
7
# Following steps by https://software.intel.com/content/www/us/en/develop/documentation/installation-guide-for-intel-oneapi-toolkits-linux/top/installation/install-using-package-managers/apt.html .
6
8
RUN cd /tmp && \
@@ -11,20 +13,22 @@ RUN cd /tmp && \
11
13
12
14
# To save disk space, only install the required components, but not the whole intel-hpckit.
13
15
RUN apt-get update --allow-unauthenticated \
14
-
&& apt-get install -y \
16
+
&& apt-get install -y --no-install-recommends \
15
17
intel-oneapi-compiler-dpcpp-cpp-and-cpp-classic \
16
18
intel-oneapi-compiler-fortran \
17
19
intel-oneapi-mkl-devel \
18
20
intel-oneapi-mpi-devel
19
21
20
22
# These environment variables are the most essential part generated by `source /opt/intel/oneapi/setvars.sh`.
21
23
# It is recommended to do it again if this docker image is used for development.
0 commit comments