File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 11FROM ghcr.io/actions/actions-runner:latest
22
3+ # base dependencies
34RUN 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
2429RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash && \
2530 sudo apt-get install git-lfs
2631
2732RUN sudo groupadd -g 109 render
2833
34+ # ROCm install
2935RUN 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 \
Original file line number Diff line number Diff line change 11FROM ghcr.io/actions/actions-runner:latest
22
3+ # base dependencies
34RUN 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
2123RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash && \
2224 sudo apt-get install git-lfs
You can’t perform that action at this time.
0 commit comments