File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -7,17 +7,19 @@ ENV LANG=en_US.UTF-8
7
7
RUN gem install listen asciidoctor asciidoctor-diagram rouge ascii_binder && yum clean all
8
8
9
9
RUN yum update -y \
10
- && yum install -y jq python3 \
10
+ && yum install -y jq python3 python3-devel \
11
11
&& yum module reset nodejs -y \
12
12
&& yum module install nodejs:18 -y \
13
+ && yum copr enable mczernek/vale -y \
14
+ && yum install vale -y \
13
15
&& yum clean all
14
16
15
17
COPY ./aura.tar.gz /
16
18
17
19
ENV PYTHONUNBUFFERED=1
18
20
19
21
RUN python3 -m ensurepip \
20
- && pip3 install --no-cache --upgrade pip setuptools wheel pyyaml lxml requests yamllint \
22
+ && python3 -m pip install --no-cache --upgrade pip setuptools wheel pyyaml lxml requests yamllint \
21
23
&& pip3 install --no-cache-dir /aura.tar.gz \
22
24
&& rm -rf /var/cache/yum /tmp/* /var/tmp/*
23
25
You can’t perform that action at this time.
0 commit comments