forked from NVIDIA-AI-Blueprints/vulnerability-analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
executable file
·81 lines (64 loc) · 2.59 KB
/
Copy pathDockerfile
File metadata and controls
executable file
·81 lines (64 loc) · 2.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# SPDX-FileCopyrightText: Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
ARG BASE_IMAGE_URL=nvcr.io/nvidia/base/ubuntu
ARG BASE_IMAGE_TAG=22.04_20240212
ARG PYTHON_VERSION=3.12
# Specified on the command line with --build-arg VULN_ANALYSIS_VERSION=$(python -m setuptools_scm)
ARG VULN_ANALYSIS_VERSION=2.1.0
FROM ${BASE_IMAGE_URL}:${BASE_IMAGE_TAG} AS base
COPY --from=ghcr.io/astral-sh/uv:0.9.9 /uv /uvx /bin/
ARG VULN_ANALYSIS_VERSION
ARG PYTHON_VERSION
ENV PYTHONDONTWRITEBYTECODE=1
RUN apt-get update && apt-get install -y \
ca-certificates \
curl \
git \
git-lfs \
wget \
&& apt-get clean \
&& update-ca-certificates
# Set SSL environment variables
ENV REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
ENV SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
# Add Tini
ENV TINI_VERSION=v0.19.0
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
RUN chmod +x /tini
SHELL ["/bin/bash", "-c"]
# Set working directory
WORKDIR /workspace
# Copy the project into the container
COPY ./ /workspace
# Install the NeMo Agent toolkit package and vuln analysis package
RUN --mount=type=cache,id=uv_cache,target=/root/.cache/uv,sharing=locked \
export SETUPTOOLS_SCM_PRETEND_VERSION=${VULN_ANALYSIS_VERSION} && \
uv venv --python ${PYTHON_VERSION} /workspace/.venv && \
uv sync
# Activate the environment (make it default for subsequent commands)
RUN echo "source /workspace/.venv/bin/activate" >> ~/.bashrc
# Enivronment variables for the venv
ENV PATH="/workspace/.venv/bin:$PATH"
# Mark all git repos as safe to avoid git errors
RUN echo $'\
[safe]\n\
directory = *\n\
'> /root/.gitconfig
# ===== Setup for development =====
FROM base AS runtime
RUN --mount=type=cache,id=uv_cache,target=/root/.cache/uv,sharing=locked \
source /workspace/.venv/bin/activate && \
uv pip install "jupyterlab>=4.2.5,<5"
CMD ["jupyter-lab", "--no-browser", "--allow-root", "--ip='*'", "--port=8000", "--NotebookApp.token=''", "--NotebookApp.password=''"]