All checks were successful
continuous-integration/drone/push Build is passing
9 lines
152 B
Bash
Executable file
9 lines
152 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
IMAGE=pommib/swiss:latest
|
|
docker pull $IMAGE
|
|
docker pull debian:trixie-slim
|
|
docker build --no-cache -t $IMAGE ./
|
|
docker push $IMAGE
|