10 lines
164 B
Bash
10 lines
164 B
Bash
|
#!/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
|