9 lines
170 B
Bash
Executable file
9 lines
170 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
IMAGE=pommib/powerdns:4.9-trixie
|
|
#docker pull $IMAGE
|
|
docker pull debian:trixie-slim
|
|
docker build --no-cache -t $IMAGE ./debian/13/
|
|
docker push $IMAGE
|