1
0
Fork 0
docker-jumpbox/build.sh

10 lines
156 B
Bash
Executable File

#!/bin/sh
set -ex
IMAGE=pommib/jumpbox:latest
docker pull $IMAGE
docker pull debian:bookworm-slim
docker build --no-cache -t $IMAGE ./
docker push $IMAGE