Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump base OS of images #154

Merged
merged 1 commit into from
May 29, 2024
Merged
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
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
Loading