diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 5bdf89855..604b14049 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -1,5 +1,8 @@ name: docker on: + workflow_dispatch: {} + schedule: + - cron: '0 0 * * 0' # once a week push: branches: [master] paths: diff --git a/build_tools/docker/full.Dockerfile b/build_tools/docker/full.Dockerfile index 6b51a4d2f..fe2f98b21 100644 --- a/build_tools/docker/full.Dockerfile +++ b/build_tools/docker/full.Dockerfile @@ -4,7 +4,7 @@ FROM ubuntu:noble-20240423 as builder SHELL ["/bin/bash", "-o", "pipefail", "-c"] ARG USERNAME=compositor -ARG RUST_VERSION=1.74 +ARG RUST_VERSION=1.81 ENV DEBIAN_FRONTEND=noninteractive @@ -25,7 +25,7 @@ WORKDIR /root/project RUN source ~/.cargo/env && cargo build --release # Runtime image -FROM ubuntu:mantic-20231011 +FROM ubuntu:noble-20240423 SHELL ["/bin/bash", "-o", "pipefail", "-c"] diff --git a/build_tools/docker/slim.Dockerfile b/build_tools/docker/slim.Dockerfile index 800f26d5f..942740757 100644 --- a/build_tools/docker/slim.Dockerfile +++ b/build_tools/docker/slim.Dockerfile @@ -4,7 +4,7 @@ FROM ubuntu:noble-20240423 as builder SHELL ["/bin/bash", "-o", "pipefail", "-c"] ARG USERNAME=compositor -ARG RUST_VERSION=1.74 +ARG RUST_VERSION=1.81 ENV DEBIAN_FRONTEND=noninteractive @@ -24,7 +24,7 @@ WORKDIR /root/project RUN source ~/.cargo/env && cargo build --release --no-default-features # Runtime image -FROM ubuntu:mantic-20231011 +FROM ubuntu:noble-20240423 SHELL ["/bin/bash", "-o", "pipefail", "-c"]