1
0
Fork 0
docker-jumpbox/build.sh

10 lines
156 B
Bash
Raw Normal View History

2022-09-09 11:37:37 +02:00
#!/bin/sh
set -ex
2022-09-09 11:37:37 +02:00
IMAGE=pommib/jumpbox:latest
docker pull $IMAGE
docker pull debian:bookworm-slim
docker build --no-cache -t $IMAGE ./
docker push $IMAGE