add cache busting
Build and Push Container / build-and-push (push) Successful in 16s

This commit is contained in:
2026-05-28 16:01:42 -04:00
parent 6a30145171
commit 54746f4636
5 changed files with 65 additions and 9 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ podman build -t homepage:latest .
### Run the container
```bash
podman run --rm -p 8080:8080 -v ./src:/usr/share/nginx/html:z homepage:latest
podman run --rm -p 0.0.0.0:8080:8080 -v ./src:/usr/share/nginx/html:z homepage:latest
```
Visit `http://localhost:8080` in your browser.