-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docker: switch to Debian Bullseye to match production
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ubuntu:noble | ||
FROM debian:bullseye | ||
LABEL org.opencontainers.image.authors="Ryan Baumann <[email protected]>" | ||
|
||
# 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 | ||
|