From 8d689e07cac23995c1a6c1174cc4d424b1d238d0 Mon Sep 17 00:00:00 2001 From: Ryan Baumann Date: Wed, 4 Dec 2024 16:27:57 -0500 Subject: [PATCH] Docker: switch to Debian Bullseye to match production --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 89e5fc836..e5cc3cdd4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:noble +FROM debian:bullseye LABEL org.opencontainers.image.authors="Ryan Baumann " # Install the Ubuntu packages. @@ -12,7 +12,7 @@ RUN apt-get update && \ openjdk-11-jre # Set the locale. -RUN locale-gen en_US.UTF-8 +RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && locale-gen ENV LANG en_US.UTF-8 ENV LANGUAGE en_US:en ENV LC_ALL en_US.UTF-8