diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 12176584..ddc2d619 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ env: jobs: build-console: name: build-frontend - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 env: NEXT_PUBLIC_API_URL: /api/ steps: @@ -289,7 +289,7 @@ jobs: # only run if not a tags build if: startsWith(github.ref, 'refs/tags/') == false needs: build-release - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/download-artifact@v4 - name: Display structure of downloaded files @@ -307,7 +307,7 @@ jobs: deploy-docker: needs: build-release - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Set up QEMU uses: docker/setup-qemu-action@v3 diff --git a/Dockerfile b/Dockerfile index bfeda03a..7f812ae8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:22.04 as base +FROM ubuntu:24.04 as base ARG TARGETPLATFORM COPY . /tmp WORKDIR /tmp @@ -18,7 +18,7 @@ RUN case $TARGETPLATFORM in \ chmod +x /convert_record_cli; \ chmod +x /convert_record_worker -FROM ubuntu:22.04 +FROM ubuntu:24.04 # install wget & curl RUN apt update && apt install -y wget curl && apt clean && rm -rf /var/lib/apt/lists/*