Skip to content

Commit e7ce769

Browse files
committed
locale tweaks in dockerfile
1 parent b6d5747 commit e7ce769

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

Dockerfile

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
FROM python:slim
22

3-
# -- WIP --
4-
# this dockerfile is a work in progress,
5-
# the vague intention is to use it for CI.
3+
# -- Dockerfile is mainly for use in CI --
64

7-
# RUN add-apt-repository ppa:mozillateam/ppa && \
85
RUN apt-get update -y
96

107
RUN apt-get install -y \
118
git \
129
asciidoctor \
13-
# language-pack-en \
1410
ruby-pygments.rb \
1511
firefox-esr \
1612
tree \
@@ -20,10 +16,10 @@ RUN apt-get install -y \
2016
make \
2117
curl
2218

19+
RUN echo "en_GB.UTF-8 UTF-8" > /etc/locale.gen
2320
ENV LC_ALL=en_GB.UTF-8 LANG=en_GB.UTF8 LANGUAGE=en_GB:en
21+
RUN locale-gen
2422

25-
RUN locale-gen en_GB.UTF-8
26-
# RUN pip install uv
2723
ADD --chmod=755 https://astral.sh/uv/install.sh /install.sh
2824
RUN /install.sh && rm /install.sh
2925
RUN ln -s $HOME/.cargo/bin/uv /usr/bin/uv

0 commit comments

Comments
 (0)