<pre style='margin:0'>
Clemens Lang (neverpanic) pushed a commit to branch master
in repository macports-infrastructure.

</pre>
<p><a href="https://github.com/macports/macports-infrastructure/commit/f9090fe75fcf963a168df059857e45edcc237efe">https://github.com/macports/macports-infrastructure/commit/f9090fe75fcf963a168df059857e45edcc237efe</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new f9090fe  containers/paste: Always pull base image
</span>f9090fe is described below

<span style='display:block; white-space:pre;color:#808000;'>commit f9090fe75fcf963a168df059857e45edcc237efe
</span>Author: Clemens Lang <neverpanic@gmail.com>
AuthorDate: Thu Aug 11 10:25:02 2022 +0200

<span style='display:block; white-space:pre;color:#404040;'>    containers/paste: Always pull base image
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Use docker build --pull to always check for and download a newer base
</span><span style='display:block; white-space:pre;color:#404040;'>    image if available.
</span>---
 containers/paste/deploy.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/containers/paste/deploy.sh b/containers/paste/deploy.sh
</span><span style='display:block; white-space:pre;color:#808080;'>index 556021c..152189b 100755
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/containers/paste/deploy.sh
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/containers/paste/deploy.sh
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -43,7 +43,7 @@ if [ "$IMAGES" -gt 0 ]; then
</span> fi
 
 printf "Rebuilding container %s with tag %s\n" "$CONTAINERNAME" "$NEWREV-$TIMESTAMP"
<span style='display:block; white-space:pre;background:#ffe0e0;'>-docker build --no-cache -t "$CONTAINERNAME:$NEWREV-$TIMESTAMP" .
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+docker build --pull --no-cache -t "$CONTAINERNAME:$NEWREV-$TIMESTAMP" .
</span> 
 printf "Rebuild successful, tagging as %s:latest\n" "$CONTAINERNAME"
 docker tag "$CONTAINERNAME:$NEWREV-$TIMESTAMP" "$CONTAINERNAME:latest"
</pre><pre style='margin:0'>

</pre>