-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Switch to invoking camouflage via npx, allowing it to be inst…
…alled on-demand" This reverts commit 8998fb2.
- Loading branch information
1 parent
06121e4
commit 57dc22c
Showing
2 changed files
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,6 +114,7 @@ RUN --mount=type=cache,id=conda_pkgs,target=/opt/conda/pkgs,sharing=locked \ | |
# Install mamba, boa and git here. Conda build breaks with other git installs | ||
/opt/conda/bin/mamba install -y -n base -c conda-forge "boa" "git >=2.35.3" "python=${PYTHON_VER}" "tini=0.19" &&\ | ||
source activate base | ||
# conda clean -afy | ||
|
||
# ============ Stage: conda_env ============ | ||
# Create the conda environment and install all dependencies | ||
|
@@ -288,6 +289,12 @@ RUN --mount=type=cache,id=apt,target=/var/cache/apt \ | |
libcusolver-dev-${CUDA_MAJOR_VER}-${CUDA_MINOR_VER} && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# Install camouflage needed for unittests to mock a triton server | ||
# Pin to v0.9 until #967 is resolved | ||
RUN source activate morpheus && \ | ||
npm install -g [email protected] && \ | ||
npm cache clean --force | ||
|
||
# Setup git to allow other users to access /workspace. Requires git 2.35.3 or | ||
# greater. See https://marc.info/?l=git&m=164989570902912&w=2. Only enable for | ||
# development | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters