Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ EOF


# Base image
FROM rapidsai/miniforge-cuda:cuda${CUDA_VER}-base-${LINUX_VER}-py${PYTHON_VER} as base
FROM rapidsai/miniforge-cuda:cuda${CUDA_VER}-base-${LINUX_VER}-py${PYTHON_VER} AS base
ARG CUDA_VER
ARG PYTHON_VER

Expand Down Expand Up @@ -67,7 +67,7 @@ CMD ["ipython"]


# Notebooks image
FROM base as notebooks
FROM base AS notebooks

ARG CUDA_VER
ARG LINUX_DISTRO
Expand Down
1 change: 1 addition & 0 deletions context/test_notebooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ def test_notebook(notebook_file, executed_nb_file):
warnings = []
outputs = []


# use nbconvert to run the notebook natively
ep = ExecutePreprocessor(timeout=600, kernel_name="python3", allow_errors=True)
task_init = timeit.default_timer()
Expand Down