-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add example notebook for docker (#2767)
* add example notebook for docker * remove unneeded file * update base image to NVIDIA PyTorch container * update --------- Co-authored-by: Chester Chen <[email protected]>
- Loading branch information
1 parent
a6e1100
commit f2ef032
Showing
4 changed files
with
521 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
ARG PYTORCH_IMAGE=nvcr.io/nvidia/pytorch:24.07-py3 | ||
FROM ${PYTORCH_IMAGE} | ||
|
||
ARG NVF_BRANCH=main | ||
|
||
RUN python3 -m pip install -U pip | ||
RUN python3 -m pip install -U setuptools | ||
RUN python3 -m pip install nvflare~=2.5.0rc | ||
|
||
WORKDIR /workspace/ | ||
RUN git clone https://github.com/NVIDIA/NVFlare.git --branch ${NVF_BRANCH} --single-branch NVFlare |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# NVIDIA FLARE with Docker | ||
|
||
The notebook in this directory walks through the creation and launch of Docker containers for NVIDIA FLARE. |
Oops, something went wrong.