We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 958a611 commit 967f46dCopy full SHA for 967f46d
1 file changed
.github/docker/rebuild.sh
@@ -2,9 +2,17 @@
2
3
docker pull docker.io/library/ubuntu:latest
4
5
+# use with --force in case it does not trigger while it should
6
+OPTS=""
7
+case "$1" in
8
+ -f|--force)
9
+ OPTS="--no-cache" ;;
10
+esac
11
+
12
13
# build & tag & push all at the same time
14
-docker buildx build \
15
+docker buildx build $OPTS \
16
-f python-nodejs.Dockerfile \
17
-t dockerhub.pl.sophia.inria.fr/python-nodejs:latest \
18
--push .
0 commit comments