File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change 1
1
FROM python:slim
2
2
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 --
6
4
7
- # RUN add-apt-repository ppa:mozillateam/ppa && \
8
5
RUN apt-get update -y
9
6
10
7
RUN apt-get install -y \
11
8
git \
12
9
asciidoctor \
13
- # language-pack-en \
14
10
ruby-pygments.rb \
15
11
firefox-esr \
16
12
tree \
@@ -20,10 +16,10 @@ RUN apt-get install -y \
20
16
make \
21
17
curl
22
18
19
+ RUN echo "en_GB.UTF-8 UTF-8" > /etc/locale.gen
23
20
ENV LC_ALL=en_GB.UTF-8 LANG=en_GB.UTF8 LANGUAGE=en_GB:en
21
+ RUN locale-gen
24
22
25
- RUN locale-gen en_GB.UTF-8
26
- # RUN pip install uv
27
23
ADD --chmod=755 https://astral.sh/uv/install.sh /install.sh
28
24
RUN /install.sh && rm /install.sh
29
25
RUN ln -s $HOME/.cargo/bin/uv /usr/bin/uv
You can’t perform that action at this time.
0 commit comments