8 lines
199 B
Docker
8 lines
199 B
Docker
|
FROM nvidia/cuda:10.2-devel
|
||
|
WORKDIR /
|
||
|
RUN apt update && apt install -y --no-install-recommends \
|
||
|
git build-essential
|
||
|
RUN git clone https://github.com/wilicc/gpu-burn.git
|
||
|
RUN cd gpu-burn && make
|
||
|
|