Skip to content

Commit

Permalink
Updated docker builds to use version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Dekkers committed May 29, 2023
1 parent 05749aa commit 89e009c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dockerx.yml
Expand Up @@ -26,4 +26,4 @@ jobs:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: roboquant/jupyter:1.4.0,roboquant/jupyter:latest
tags: roboquant/jupyter:1.5.0,roboquant/jupyter:latest
2 changes: 1 addition & 1 deletion bin/dockerbuild.sh
Expand Up @@ -11,4 +11,4 @@ rm -f notebooks/*.nbconvert.ipynb
jupyter nbconvert --clear-output --inplace notebooks/*.ipynb

# Build for AMD64 and ARM64 platforms
docker buildx build --platform linux/amd64,linux/arm64/v8 -t roboquant/jupyter:1.4.0 -t roboquant/jupyter:latest --push .
docker buildx build --platform linux/amd64,linux/arm64/v8 -t roboquant/jupyter:1.5.0 -t roboquant/jupyter:latest --push .
2 changes: 1 addition & 1 deletion bin/dockerbuild_singleplatform.sh
Expand Up @@ -5,4 +5,4 @@ rm -f notebooks/*.nbconvert.ipynb
jupyter nbconvert --clear-output --inplace notebooks/*.ipynb

# Build for local platform only
docker build -t roboquant/jupyter:1.4.0 -t roboquant/jupyter:latest .
docker build -t roboquant/jupyter:1.5.0 -t roboquant/jupyter:latest .
2 changes: 1 addition & 1 deletion bin/roboquant.sh
@@ -1 +1 @@
docker run --rm -p 8888:8888 roboquant/jupyter
docker run -p 8888:8888 roboquant/jupyter
2 changes: 1 addition & 1 deletion binder/Dockerfile
@@ -1 +1 @@
FROM roboquant/jupyter:1.4.0
FROM roboquant/jupyter:1.5.0

0 comments on commit 89e009c

Please sign in to comment.