Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Ubuntu 26.04
FROM ubuntu:resolute-20260724.1 AS resolute
FROM ubuntu:resolute-20260811.1 AS resolute

SHELL ["/bin/bash", "-c"]

Expand Down Expand Up @@ -35,7 +35,7 @@ RUN chmod +x /usr/local/bin/generate-ci-config && \
ENTRYPOINT ["/usr/bin/sleep","1000"]

# Ubuntu 24.04
FROM ubuntu:noble-20260730.1 AS noble
FROM ubuntu:noble-20260810 AS noble

SHELL ["/bin/bash", "-c"]

Expand Down Expand Up @@ -69,7 +69,7 @@ RUN chmod +x /usr/local/bin/generate-ci-config && \
ENTRYPOINT ["/usr/bin/sleep","1000"]

# Ubuntu 22.04
FROM ubuntu:jammy-20260731.1 AS jammy
FROM ubuntu:jammy-20260810 AS jammy

SHELL ["/bin/bash", "-c"]

Expand Down
2 changes: 1 addition & 1 deletion ubuntu22.04/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=ubuntu:jammy-20260731.1
ARG BASE_IMAGE=ubuntu:jammy-20260810

FROM ${BASE_IMAGE} AS build

Expand Down
2 changes: 1 addition & 1 deletion ubuntu22.04/precompiled/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=ubuntu:jammy-20260731.1
ARG BASE_IMAGE=ubuntu:jammy-20260810

FROM ${BASE_IMAGE}

Expand Down
2 changes: 1 addition & 1 deletion ubuntu24.04/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=ubuntu:noble-20260730.1
ARG BASE_IMAGE=ubuntu:noble-20260810

FROM ${BASE_IMAGE} AS build

Expand Down
2 changes: 1 addition & 1 deletion ubuntu24.04/precompiled/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=ubuntu:noble-20260730.1
ARG BASE_IMAGE=ubuntu:noble-20260810
FROM ${BASE_IMAGE}

ENV DEBIAN_FRONTEND=noninteractive
Expand Down
2 changes: 1 addition & 1 deletion ubuntu26.04/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=ubuntu:resolute-20260724.1
ARG BASE_IMAGE=ubuntu:resolute-20260811.1

FROM ${BASE_IMAGE} AS build

Expand Down
2 changes: 1 addition & 1 deletion ubuntu26.04/precompiled/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=ubuntu:resolute-20260724.1
ARG BASE_IMAGE=ubuntu:resolute-20260811.1
FROM ${BASE_IMAGE}

ENV DEBIAN_FRONTEND=noninteractive
Expand Down
Loading