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

chore(deps): update ubuntu docker tag to v24 #97

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/elasticsearch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Extract Elasticsearch artifact
################################################################################

FROM ubuntu:20.04 AS builder
FROM ubuntu:24.04 AS builder

# Install required packages to extract the Elasticsearch distribution
RUN for iter in {1..10}; do \
Expand Down Expand Up @@ -72,7 +72,7 @@ RUN sed -i -e 's/ES_DISTRIBUTION_TYPE=tar/ES_DISTRIBUTION_TYPE=docker/' bin/elas
# Add entrypoint
################################################################################

FROM ubuntu:20.04
FROM ubuntu:24.04

# Change default shell to bash, then install required packages with retries.
RUN yes no | dpkg-reconfigure dash && \
Expand Down
4 changes: 2 additions & 2 deletions docker/kibana/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Build stage 0 `builder`:
# Extract Kibana artifact
################################################################################
FROM ubuntu:20.04 AS builder
FROM ubuntu:24.04 AS builder

RUN for iter in {1..10}; do \
apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y curl && \
Expand Down Expand Up @@ -66,7 +66,7 @@ RUN chmod -R g=u /usr/share/kibana
# Copy kibana from stage 0
# Add entrypoint
################################################################################
FROM ubuntu:20.04
FROM ubuntu:24.04
EXPOSE 5601

# RUN mkdir /usr/share/fonts/local
Expand Down