-
Notifications
You must be signed in to change notification settings - Fork 2
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
16 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 |
---|---|---|
@@ -1 +1,16 @@ | ||
FROM ubuntu:22.04 | ||
FROM ubuntu:22.04 | ||
|
||
WORKDIR /accel-sim | ||
ADD . /accel-sim | ||
|
||
ENV CUDA_INSTALL_PATH /usr/local/cuda-11.7 | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y wget build-essential xutils-dev bison zlib1g-dev flex \ | ||
libglu1-mesa-dev git g++ libssl-dev libxml2-dev libboost-all-dev git g++ \ | ||
libxml2-dev vim python-setuptools python3-pip \ | ||
&& apt-get clean \ | ||
&& pip3 install pyyaml plotly psutil \ | ||
&& wget https://developer.download.nvidia.com/compute/cuda/11.7.0/local_installers/cuda_11.7.0_515.43.04_linux.run \ | ||
&& sh cuda_11.7.0_515.43.04_linux.run --silent --toolkit \ | ||
&& rm cuda_11.7.0_515.43.04_linux.run |