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