From 2643f673ba534f15cc6cf4c4aaa9da1ba6eeebe4 Mon Sep 17 00:00:00 2001 From: Matthew Lopez <73856503+MatthewL246@users.noreply.github.com> Date: Tue, 4 Jun 2024 12:20:58 -0400 Subject: [PATCH] chore: switch to Ubuntu 24.04 --- nginx/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nginx/Dockerfile b/nginx/Dockerfile index 4c5bad6..84f50fd 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -5,8 +5,8 @@ ARG openssl_dir="/opt/openssl" ARG nginx_version="1.24.0" ARG nginx_dir="/opt/nginx" -# * Use Ubuntu 18.04 as the build image as it's known-good for TLS 1.0/1.1 -FROM ubuntu:18.04 AS build + +FROM ubuntu:24.04 AS build # * Install build dependencies RUN apt-get update \ @@ -42,8 +42,8 @@ RUN ./configure \ RUN make -j$(nproc) RUN make install -# * Use Ubuntu to run Nginx -FROM ubuntu:latest AS final + +FROM ubuntu:24.04 AS final # * Create required directories RUN mkdir -p /var/log/nginx