Skip to content

Commit

Permalink
docker: bump base image to ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
csegarragonz committed Sep 2, 2024
1 parent 5497d05 commit a8067ab
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FAABRIC_VERSION=0.20.0
FAABRIC_CLI_IMAGE=faasm.azurecr.io/faabric:0.20.0
FAABRIC_VERSION=0.21.0
FAABRIC_CLI_IMAGE=faasm.azurecr.io/faabric:0.21.0
COMPOSE_PROJECT_NAME=faabric-dev
CONAN_CACHE_MOUNT_SOURCE=./conan-cache/
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
container:
image: faasm.azurecr.io/faabric:0.20.0
image: faasm.azurecr.io/faabric:0.21.0
env:
DEPLOYMENT_TYPE: gha-ci
steps:
Expand All @@ -34,7 +34,7 @@ jobs:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
container:
image: faasm.azurecr.io/faabric:0.20.0
image: faasm.azurecr.io/faabric:0.21.0
steps:
- name: "Check out code"
uses: actions/checkout@v4
Expand All @@ -45,7 +45,7 @@ jobs:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
container:
image: faasm.azurecr.io/faabric:0.20.0
image: faasm.azurecr.io/faabric:0.21.0
steps:
- name: "Check out code"
uses: actions/checkout@v4
Expand All @@ -65,7 +65,7 @@ jobs:
REDIS_QUEUE_HOST: redis
REDIS_STATE_HOST: redis
container:
image: faasm.azurecr.io/faabric:0.20.0
image: faasm.azurecr.io/faabric:0.21.0
options: --privileged
services:
redis:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
REDIS_QUEUE_HOST: redis
REDIS_STATE_HOST: redis
container:
image: faasm.azurecr.io/faabric:0.20.0
image: faasm.azurecr.io/faabric:0.21.0
options: --privileged
services:
redis:
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
REDIS_QUEUE_HOST: redis
REDIS_STATE_HOST: redis
container:
image: faasm.azurecr.io/faabric:0.20.0
image: faasm.azurecr.io/faabric:0.21.0
services:
redis:
image: redis
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.20.0
0.21.0
2 changes: 1 addition & 1 deletion docker/faabric-base.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:24.04

# Configure APT repositories
ARG LLVM_VERSION_MAJOR
Expand Down
2 changes: 1 addition & 1 deletion docker/faabric.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM faasm.azurecr.io/faabric-base:0.15.0
FROM faasm.azurecr.io/faabric-base:0.21.0
ARG FAABRIC_VERSION

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

0 comments on commit a8067ab

Please sign in to comment.