Spaces:
Runtime error
Runtime error
File size: 151 Bytes
4bdb245 |
1 2 3 4 5 6 7 8 9 10 11 12 |
FROM nvidia/vulkan:1.1.121
RUN apt update -y
RUN apt install g++ -y
RUN mkdir /workspace
WORKDIR /workspace
COPY . /workspace
RUN make build_linux
|