docker: rollback to ubuntu 22.04 to openvidu-deployment-tester image

v2
cruizba 2025-01-10 21:58:10 +01:00
parent 9bafa811e7
commit 8037253ee0
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM ubuntu:24.04
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND noninteractive \
DISPLAY :99.0 \

View File

@ -2,7 +2,7 @@
VERSION=$1
if [[ ! -z $VERSION ]]; then
docker build --pull --no-cache --rm=true -t "openvidu/openvidu-deployment-tester:${VERSION}" .
docker build -t "openvidu/openvidu-deployment-tester:${VERSION}" .
else
echo "Error: You need to specify a version as first argument"
fi