Skip to content

Updates to NetPyNE-UI for running on OSBv2 #1

Updates to NetPyNE-UI for running on OSBv2

Updates to NetPyNE-UI for running on OSBv2 #1

Workflow file for this run

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"