Skip to content

Commit

Permalink
Bump base OS of images
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas Bock <[email protected]>
  • Loading branch information
nicolasbock committed May 29, 2024
1 parent 47341c2 commit 3908b9a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Dockerfile-debug
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM ubuntu:22.04
FROM ubuntu:24.04

LABEL maintainer="Canonical Sustaining Engineering <[email protected]>"
LABEL org.opencontainers.image.description "Athena Monitor"

RUN apt-get update
RUN apt-get install --no-install-recommends --yes \
RUN DEBIAN_FRONTEND=noninteractive apt-get install --yes --no-install-recommends apt-utils
RUN DEBIAN_FRONTEND=noninteractive apt-get install --yes --no-install-recommends \
iproute2 \
iputils-ping
RUN apt-get update
RUN apt-get install --no-install-recommends --yes \
RUN DEBIAN_FRONTEND=noninteractive apt-get install --yes --no-install-recommends \
default-mysql-client
5 changes: 3 additions & 2 deletions cmd/monitor/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
FROM ubuntu:22.04
FROM ubuntu:24.04
LABEL maintainer="Canonical Sustaining Engineering <[email protected]>"
LABEL org.opencontainers.image.description "Athena Monitor"

RUN apt-get update
RUN apt-get --yes install \
RUN DEBIAN_FRONTEND=noninteractive apt-get install --yes --no-install-recommends apt-utils
RUN DEBIAN_FRONTEND=noninteractive apt-get install --yes --no-install-recommends \
bc \
bsdmainutils \
ca-certificates \
Expand Down
5 changes: 3 additions & 2 deletions cmd/processor/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
FROM ubuntu:22.04
FROM ubuntu:24.04
LABEL maintainer="Canonical Sustaining Engineering <[email protected]>"
LABEL org.opencontainers.image.description "Athena Processor"

RUN apt-get update
RUN apt-get --yes install \
RUN DEBIAN_FRONTEND=noninteractive apt-get install --yes --no-install-recommends apt-utils
RUN DEBIAN_FRONTEND=noninteractive apt-get install --yes --no-install-recommends \
bc \
bsdmainutils \
ca-certificates \
Expand Down

0 comments on commit 3908b9a

Please sign in to comment.