10 lines
155 B
Bash
10 lines
155 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -x
|
||
|
|
||
|
IMAGE=pommib/jumpbox:latest
|
||
|
docker pull $IMAGE
|
||
|
docker pull debian:bookworm-slim
|
||
|
docker build --no-cache -t $IMAGE ./
|
||
|
docker push $IMAGE
|