File tree Expand file tree Collapse file tree 3 files changed +32
-1
lines changed Expand file tree Collapse file tree 3 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 5
5
site
6
6
** /__pycache__
7
7
src /cupoch /visualization /shader /shader.h
8
+ src /cupoch /visualization /visualizer /imgui
8
9
** /imgui.ini
9
10
src /python /poetry.lock
11
+ test_package /build
12
+ ** /CMakeUserPresets.json
Original file line number Diff line number Diff line change
1
+ FROM nvidia/cuda:11.4.0-devel-ubuntu20.04
2
+
3
+ WORKDIR /work/cupoch
4
+
5
+ ENV DEBIAN_FRONTEND noninteractive
6
+ ENV TZ Asia/Tokyo
7
+ RUN apt-get update && apt-get install -y --no-install-recommends \
8
+ curl \
9
+ build-essential \
10
+ libxinerama-dev \
11
+ libxcursor-dev \
12
+ libglu1-mesa-dev \
13
+ xorg-dev \
14
+ cmake \
15
+ tzdata \
16
+ python3-dev \
17
+ python3-setuptools \
18
+ python3-pip && \
19
+ rm -rf /var/lib/apt/lists/*
20
+
21
+ ENV PATH $PATH:/root/.local/bin
22
+
23
+ RUN python3 -m pip install -U wheel conan cmake
24
+
25
+ COPY . .
26
+ RUN conan create . -c tools.system.package_manager:mode=install
Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ version: '3'
3
3
services :
4
4
cupoch :
5
5
image : cupoch:latest
6
- build : .
6
+ build :
7
+ context : .
8
+ dockerfile : conan.Dockerfile
7
9
container_name : cupoch
8
10
environment :
9
11
- " DISPLAY=${DISPLAY}"
You can’t perform that action at this time.
0 commit comments