Skip to content

Commit 5784dc7

Browse files
chore(deps): update ubuntu docker tag to v26
1 parent 29fa90b commit 5784dc7

34 files changed

Lines changed: 41 additions & 41 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
FROM ubuntu:24.04
1+
FROM ubuntu:26.04
22
CMD [ "ps" ]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM ubuntu:24.04
1+
FROM ubuntu:26.04
22
ENTRYPOINT [ "ps" ]
33
CMD [ "faux" ]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:24.04
1+
FROM ubuntu:26.04
22
COPY entrypoint.sh /
33
ENTRYPOINT [ "/entrypoint.sh" ]
44
CMD [ "faux" ]

010_docker/020_advanced/160_dockerfile/order/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:24.04
1+
FROM ubuntu:26.04
22

33
RUN apt-get update \
44
&& DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends \

010_docker/020_advanced/160_dockerfile/reusability/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:24.04 AS base
1+
FROM ubuntu:26.04 AS base
22
RUN apt-get update \
33
&& DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends \
44
golang \

010_docker/020_advanced/160_dockerfile/separation/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:24.04 AS base
1+
FROM ubuntu:26.04 AS base
22
RUN apt-get update \
33
&& DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends \
44
golang \
@@ -11,6 +11,6 @@ RUN go mod download
1111
COPY . .
1212
RUN go build -o hello .
1313

14-
FROM ubuntu:24.04
14+
FROM ubuntu:26.04
1515
COPY --from=builder /src/hello /
1616
ENTRYPOINT [ "/hello" ]

010_docker/020_advanced/180_heredocs/Dockerfile.copy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1.22.0
22

3-
FROM ubuntu:24.04
3+
FROM ubuntu:26.04
44

55
COPY --chmod=0755 <<EOF /entrypoint.sh
66
#!/bin/bash

010_docker/020_advanced/180_heredocs/Dockerfile.copy-multiple

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1.22.0
22

3-
FROM ubuntu:24.04
3+
FROM ubuntu:26.04
44

55
COPY <<no-recommends <<no-suggests /etc/apt/apt.conf.d/
66
APT::Install-Recommends "false";

010_docker/020_advanced/180_heredocs/Dockerfile.interpreter

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1.22.0
22

3-
FROM ubuntu:24.04
3+
FROM ubuntu:26.04
44

55
RUN bash -xe <<EOF
66
echo foo

010_docker/020_advanced/180_heredocs/Dockerfile.run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1.22.0
22

3-
FROM ubuntu:24.04
3+
FROM ubuntu:26.04
44

55
RUN <<EOF
66
ps faux

0 commit comments

Comments
 (0)