Skip to content

Commit bf55f22

Browse files
authored
6018 fixes dev docker build (#6019)
Fixes #6018 ### Description removes deprecated apt install ### Types of changes <!--- Put an `x` in all the boxes that apply, and remove the not applicable items --> - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [ ] Breaking change (fix or new feature that would cause existing functionality to change). - [x] New tests added to cover the changes. - [ ] Integration tests passed locally by running `./runtests.sh -f -u --net --coverage`. - [x] Quick tests passed locally by running `./runtests.sh --quick --unittests --disttests`. - [ ] In-line docstrings updated. - [ ] Documentation updated, tested `make html` command in the `docs/` folder. --------- Signed-off-by: Wenqi Li <wenqil@nvidia.com>
1 parent d44c7cb commit bf55f22

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/docker.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
with:
2626
ref: dev
2727
fetch-depth: 0
28-
- name: Set up Python 3.8
28+
- name: Set up Python 3.9
2929
uses: actions/setup-python@v4
3030
with:
31-
python-version: '3.8'
31+
python-version: '3.9'
3232
- shell: bash
3333
run: |
3434
git describe
@@ -58,15 +58,10 @@ jobs:
5858
uses: actions/download-artifact@v3
5959
with:
6060
name: _version.py
61-
- name: Install Latest Docker
62-
run: |
63-
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
64-
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
65-
sudo apt-get update
66-
sudo apt-get install docker-ce
6761
- name: docker_build
6862
shell: bash
6963
run: |
64+
docker --version
7065
# get tag info for versioning
7166
cat _version.py
7267
mv _version.py monai/

0 commit comments

Comments
 (0)