We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e044e7 commit 2cfcefcCopy full SHA for 2cfcefc
docker/Makefile
@@ -1,7 +1,6 @@
1
all:
2
- docker build \
3
- --platform linux/amd64 \
4
- --output=type=docker \
5
- --progress=plain \
6
- --tag nextflow/jbake:2.3.1 \
+ docker buildx build \
+ --push \
+ --platform linux/amd64,linux/arm64 \
+ --tag nextflow/jbake:2.3.1_1 \
7
.
jbake
@@ -2,8 +2,8 @@ set -x
[[ "$*" == *-s* ]] && PORT='-p 8820:8820' || PORT=''
docker run \
+ --platform linux/arm64 \
-v $PWD:$PWD \
-w $PWD $PORT \
8
- nextflow/jbake:2.3.1 \
+ nextflow/jbake:2.3.1_1 \
9
jbake "$@"
0 commit comments