Updates to NetPyNE-UI for running on OSBv2 #1
Workflow file for this run
This file contains hidden or 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
name: Docker Image Build NetPyNE-UI | |
on: | |
push: | |
branches: [ master, dev*, feature/docker*, feature/repo*, osbv2* ] | |
pull_request: | |
branches: [ master, dev*, feature/docker*, feature/repo*, osbv2* ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: | | |
./build_docker.sh | |
- name: Info on Docker image sizes | |
run: | | |
docker images | |
- name: Run the Docker container and list python installs | |
run: | | |
docker run -t --rm --entrypoint /bin/bash mynetpyneui -c "pip3 list && python -V" |