10 lines
164 B
Bash
Executable File
10 lines
164 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
IMAGE=pommib/apache2-itk-php:latest
|
|
docker pull $IMAGE
|
|
docker pull debian:bookworm-slim
|
|
docker build --no-cache -t $IMAGE ./
|
|
docker push $IMAGE
|