Skip to content

Commit

Permalink
fixing rst2html install command
Browse files Browse the repository at this point in the history
  • Loading branch information
floryn90 committed Dec 9, 2023
1 parent 98f3292 commit 80922cd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/docker/alpine-ext/ext-alpine.df
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN true \
&& npm install -g autoprefixer postcss postcss-cli yarn @babel/cli @babel/core @fullhuman/postcss-purgecss \
#
# Install rst2html
&& pip install rst2html \
&& pip install --break-system-packages rst2html \
#
# Cleaning
&& apk del py-pip py-setuptools \
Expand Down
6 changes: 3 additions & 3 deletions src/docker/debian-ext/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ RUN true \
#
# Install Python 3 and rst2html
&& DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends python3-minimal python3-pip python3-setuptools python3-wheel \
&& pip install rst2html \
&& pip install --break-system-packages rst2html \
#
# Install NodeJS and tooling
&& apt install -y ca-certificates curl gnupg \
&& mkdir -p /etc/apt/keyrings \
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_21.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \
&& apt update \
&& apt install nodejs -y \

# && curl -sL https://deb.nodesource.com/setup_20.x | bash - \
# && apt install -y nodejs \
&& npm install -g autoprefixer@10.4.16 postcss@8.4.31 postcss-cli@10.1.0 yarn@1.22.19 @babel/cli @babel/core @fullhuman/postcss-purgecss \
&& npm install -g autoprefixer postcss postcss-cli yarn @babel/cli @babel/core @fullhuman/postcss-purgecss \
#
# Install Asciidoctor
&& DEBIAN_FRONTEND=noninteractive apt install -y ruby \
Expand Down
4 changes: 2 additions & 2 deletions src/docker/ubuntu-ext/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ RUN true \
&& apt install -y ca-certificates curl gnupg \
&& mkdir -p /etc/apt/keyrings \
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_21.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \
&& apt update \
&& apt install nodejs -y \

# && curl -sL https://deb.nodesource.com/setup_20.x | bash - \
# && apt install -y nodejs \
&& npm install -g autoprefixer@10.4.16 postcss@8.4.31 postcss-cli@10.1.0 yarn@1.22.19 @babel/cli @babel/core @fullhuman/postcss-purgecss \
&& npm install -g autoprefixer postcss postcss-cli yarn @babel/cli @babel/core @fullhuman/postcss-purgecss \
#
# Install Asciidoctor
&& DEBIAN_FRONTEND=noninteractive apt install -y ruby \
Expand Down

0 comments on commit 80922cd

Please sign in to comment.