From 4fd28c0210c125aa4c932297992bfc00174f4e73 Mon Sep 17 00:00:00 2001 From: Paulo Sousa Date: Fri, 14 Jun 2024 15:07:06 -0300 Subject: [PATCH] set platform to 22.04 --- ballerina/Dockerfile | 2 +- elixir/Dockerfile | 2 +- go/Dockerfile | 2 +- java/Dockerfile | 2 +- nodejs/Dockerfile | 2 +- perl/Dockerfile | 2 +- php/Dockerfile | 2 +- scratch/Dockerfile | 2 +- static/Dockerfile | 2 +- tests/lua/tests.bats | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ballerina/Dockerfile b/ballerina/Dockerfile index e7c6aa2..e31bfc1 100644 --- a/ballerina/Dockerfile +++ b/ballerina/Dockerfile @@ -2,7 +2,7 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -FROM tsuru/base-platform:24.04 +FROM tsuru/base-platform:22.04 COPY . /var/lib/tsuru/ballerina RUN set -ex \ && sudo cp /var/lib/tsuru/ballerina/deploy /var/lib/tsuru \ diff --git a/elixir/Dockerfile b/elixir/Dockerfile index 07705b2..7cf0a8c 100644 --- a/elixir/Dockerfile +++ b/elixir/Dockerfile @@ -2,7 +2,7 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -FROM tsuru/base-platform:24.04 +FROM tsuru/base-platform:22.04 COPY . /var/lib/tsuru/elixir RUN set -ex \ && sudo /var/lib/tsuru/elixir/install \ diff --git a/go/Dockerfile b/go/Dockerfile index 1706813..3b00041 100644 --- a/go/Dockerfile +++ b/go/Dockerfile @@ -2,7 +2,7 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -FROM tsuru/base-platform:24.04 +FROM tsuru/base-platform:22.04 COPY . /var/lib/tsuru/go RUN set -ex \ && sudo /var/lib/tsuru/go/install \ diff --git a/java/Dockerfile b/java/Dockerfile index 4aec2cc..9095ca9 100644 --- a/java/Dockerfile +++ b/java/Dockerfile @@ -2,7 +2,7 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -FROM tsuru/base-platform:24.04 +FROM tsuru/base-platform:22.04 COPY . /var/lib/tsuru/java RUN set -ex \ && sudo /var/lib/tsuru/java/install \ diff --git a/nodejs/Dockerfile b/nodejs/Dockerfile index cc707b2..9e1ae7d 100644 --- a/nodejs/Dockerfile +++ b/nodejs/Dockerfile @@ -2,7 +2,7 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -FROM tsuru/base-platform:24.04 +FROM tsuru/base-platform:22.04 COPY . /var/lib/tsuru/nodejs RUN set -ex \ && /var/lib/tsuru/nodejs/install \ diff --git a/perl/Dockerfile b/perl/Dockerfile index fb6bdf7..f750c57 100644 --- a/perl/Dockerfile +++ b/perl/Dockerfile @@ -2,7 +2,7 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -FROM tsuru/base-platform:24.04 +FROM tsuru/base-platform:22.04 COPY . /var/lib/tsuru/perl RUN set -ex \ && sudo /var/lib/tsuru/perl/install \ diff --git a/php/Dockerfile b/php/Dockerfile index d69f201..d4841ae 100644 --- a/php/Dockerfile +++ b/php/Dockerfile @@ -2,7 +2,7 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -FROM tsuru/base-platform:24.04 +FROM tsuru/base-platform:22.04 COPY . /var/lib/tsuru/php RUN set -ex \ && sudo /var/lib/tsuru/php/install \ diff --git a/scratch/Dockerfile b/scratch/Dockerfile index e6f4364..f4abc92 100644 --- a/scratch/Dockerfile +++ b/scratch/Dockerfile @@ -2,7 +2,7 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -FROM tsuru/base-platform:24.04 +FROM tsuru/base-platform:22.04 COPY . /var/lib/tsuru/scratch RUN set -ex \ && sudo rm -rf /var/lib/apt/lists/* \ diff --git a/static/Dockerfile b/static/Dockerfile index 1b51cbc..cf54da0 100644 --- a/static/Dockerfile +++ b/static/Dockerfile @@ -2,7 +2,7 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -FROM tsuru/base-platform:24.04 +FROM tsuru/base-platform:22.04 COPY . /var/lib/tsuru/static RUN set -ex \ && sudo /var/lib/tsuru/static/install \ diff --git a/tests/lua/tests.bats b/tests/lua/tests.bats index 66d757e..b046711 100644 --- a/tests/lua/tests.bats +++ b/tests/lua/tests.bats @@ -14,5 +14,5 @@ load 'bats-assert-master/load' } @test "install luarocks" { - luarocks --help | grep LuaRocks | grep "a module deployment system for Lua" + luarocks --help | grep LuaRocks | grep "the Lua package manager" }