We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 568e7f3 commit eea2e3dCopy full SHA for eea2e3d
3 files changed
.github/workflows/docker-netpyne.yml
@@ -17,7 +17,7 @@ jobs:
17
18
- name: Build the Docker image
19
run: |
20
- time docker build -t mynetpyneui -f Dockerfile .
+ ./build_docker.sh
21
22
- name: Info on Docker image sizes
23
build_docker.sh
@@ -0,0 +1,4 @@
1
+#!/bin/bash
2
+set -e
3
+
4
+time DOCKER_BUILDKIT=1 docker build -t mynetpyneui -f Dockerfile .
run_docker.sh
@@ -0,0 +1,8 @@
+# A script to run the NetPyNE container locally (build it first with ./build_local.sh)
5
6
+docker run --network host -it --rm --name mynpui mynetpyneui
7
8
0 commit comments