Skip to content

Commit a8067ab

Browse files
committed
docker: bump base image to ubuntu 24.04
1 parent 5497d05 commit a8067ab

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.env

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FAABRIC_VERSION=0.20.0
2-
FAABRIC_CLI_IMAGE=faasm.azurecr.io/faabric:0.20.0
1+
FAABRIC_VERSION=0.21.0
2+
FAABRIC_CLI_IMAGE=faasm.azurecr.io/faabric:0.21.0
33
COMPOSE_PROJECT_NAME=faabric-dev
44
CONAN_CACHE_MOUNT_SOURCE=./conan-cache/

.github/workflows/tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
if: github.event.pull_request.draft == false
2121
runs-on: ubuntu-latest
2222
container:
23-
image: faasm.azurecr.io/faabric:0.20.0
23+
image: faasm.azurecr.io/faabric:0.21.0
2424
env:
2525
DEPLOYMENT_TYPE: gha-ci
2626
steps:
@@ -34,7 +34,7 @@ jobs:
3434
if: github.event.pull_request.draft == false
3535
runs-on: ubuntu-latest
3636
container:
37-
image: faasm.azurecr.io/faabric:0.20.0
37+
image: faasm.azurecr.io/faabric:0.21.0
3838
steps:
3939
- name: "Check out code"
4040
uses: actions/checkout@v4
@@ -45,7 +45,7 @@ jobs:
4545
if: github.event.pull_request.draft == false
4646
runs-on: ubuntu-latest
4747
container:
48-
image: faasm.azurecr.io/faabric:0.20.0
48+
image: faasm.azurecr.io/faabric:0.21.0
4949
steps:
5050
- name: "Check out code"
5151
uses: actions/checkout@v4
@@ -65,7 +65,7 @@ jobs:
6565
REDIS_QUEUE_HOST: redis
6666
REDIS_STATE_HOST: redis
6767
container:
68-
image: faasm.azurecr.io/faabric:0.20.0
68+
image: faasm.azurecr.io/faabric:0.21.0
6969
options: --privileged
7070
services:
7171
redis:
@@ -104,7 +104,7 @@ jobs:
104104
REDIS_QUEUE_HOST: redis
105105
REDIS_STATE_HOST: redis
106106
container:
107-
image: faasm.azurecr.io/faabric:0.20.0
107+
image: faasm.azurecr.io/faabric:0.21.0
108108
options: --privileged
109109
services:
110110
redis:
@@ -156,7 +156,7 @@ jobs:
156156
REDIS_QUEUE_HOST: redis
157157
REDIS_STATE_HOST: redis
158158
container:
159-
image: faasm.azurecr.io/faabric:0.20.0
159+
image: faasm.azurecr.io/faabric:0.21.0
160160
services:
161161
redis:
162162
image: redis

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.20.0
1+
0.21.0

docker/faabric-base.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:22.04
1+
FROM ubuntu:24.04
22

33
# Configure APT repositories
44
ARG LLVM_VERSION_MAJOR

docker/faabric.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM faasm.azurecr.io/faabric-base:0.15.0
1+
FROM faasm.azurecr.io/faabric-base:0.21.0
22
ARG FAABRIC_VERSION
33

44
# faabic-base image is not re-built often, so tag may be behind

0 commit comments

Comments
 (0)