Skip to content

Commit

Permalink
point Docker to current repo
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonCernWq committed Dec 18, 2023
1 parent 312bc66 commit 7f875b5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,8 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'

- name: Build the Docker image
run: docker build . --file Dockerfile --tag instantvnr:$(date +%s)
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ FROM nvidia/cuda:11.6.2-devel-ubuntu20.04

# Select a CUDA architecture to build. Currently we do not support multi-arch builds.
ARG CUDA_ARCH=70

ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get update
Expand Down Expand Up @@ -35,7 +34,8 @@ RUN wget -qO- "https://github.com/oneapi-src/oneTBB/releases/download/v2021.9.0/

# Create a superbuild
RUN git clone --recursive https://github.com/VIDILabs/open-volume-renderer.git /instantvnr/ovr
RUN git clone --recursive https://github.com/VIDILabs/instantvnr.git /instantvnr/source
# RUN git clone --recursive https://github.com/VIDILabs/instantvnr.git /instantvnr/source
COPY . /instantvnr/source
RUN ln -s /instantvnr/source /instantvnr/ovr/projects/instantvnr

# Config and build
Expand Down

0 comments on commit 7f875b5

Please sign in to comment.