Skip to content

Commit 19cd9b9

Browse files
committed
minor dockerfile format changes
1 parent 60c06d3 commit 19cd9b9

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

dockerfiles/amdgpu_ubuntu_ghascale.Dockerfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
FROM ghcr.io/actions/actions-runner:latest
22

3+
# base dependencies
34
RUN sudo apt-get update -y \
45
&& sudo apt-get install -y software-properties-common \
56
&& sudo add-apt-repository -y ppa:git-core/ppa \
@@ -18,16 +19,20 @@ RUN sudo apt-get update -y \
1819
lld \
1920
wget \
2021
psmisc \
21-
python3.10-venv \
22+
python3-setuptools \
23+
python3-wheel \
24+
libpython3.10 \
25+
python3.10-venv
2226
&& sudo rm -rf /var/lib/apt/lists/*
2327

28+
# git lfs install
2429
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash && \
2530
sudo apt-get install git-lfs
2631

2732
RUN sudo groupadd -g 109 render
2833

34+
# ROCm install
2935
RUN sudo apt update -y \
30-
&& sudo apt install python3-setuptools python3-wheel libpython3.10 \
3136
&& sudo usermod -a -G render,video runner \
3237
&& wget https://repo.radeon.com/amdgpu-install/6.4/ubuntu/jammy/amdgpu-install_6.4.60400-1_all.deb \
3338
&& sudo apt install -y ./amdgpu-install_6.4.60400-1_all.deb \

dockerfiles/cpubuilder_ubuntu_ghascale.Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
FROM ghcr.io/actions/actions-runner:latest
22

3+
# base dependencies
34
RUN sudo apt-get update -y \
45
&& sudo apt-get install -y software-properties-common \
56
&& sudo add-apt-repository -y ppa:git-core/ppa \
@@ -18,5 +19,6 @@ RUN sudo apt-get update -y \
1819
lld \
1920
&& sudo rm -rf /var/lib/apt/lists/*
2021

22+
# git lfs install
2123
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash && \
2224
sudo apt-get install git-lfs

0 commit comments

Comments
 (0)