9 lines
154 B
Bash
Executable file
9 lines
154 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
IMAGE=pommib/swiss:latest
|
|
docker pull $IMAGE
|
|
docker pull debian:bookworm-slim
|
|
docker build --no-cache -t $IMAGE ./
|
|
docker push $IMAGE
|