This commit is contained in:
parent
4f2e7bb256
commit
9f6de4d1e9
1 changed files with 5 additions and 1 deletions
|
@ -2,6 +2,10 @@ FROM almalinux:9
|
||||||
RUN dnf -y install dnf-plugin-config-manager \
|
RUN dnf -y install dnf-plugin-config-manager \
|
||||||
&& dnf config-manager --set-enabled crb \
|
&& dnf config-manager --set-enabled crb \
|
||||||
&& dnf -y install epel-release \
|
&& dnf -y install epel-release \
|
||||||
&& dnf -y install nodejs git-tools pandoc \
|
&& dnf -y install nodejs git-tools \
|
||||||
&& dnf clean all
|
&& dnf clean all
|
||||||
|
RUN curl -L -o pandoc-3.1.9.tar.gz https://github.com/jgm/pandoc/releases/download/3.1.9/pandoc-3.1.9-linux-amd64.tar.gz \
|
||||||
|
&& tar -xvf pandoc-3.1.9.tar.gz \
|
||||||
|
&& mv pandoc-3.1.9/bin/pandoc /usr/local/bin/pandoc \
|
||||||
|
&& rm -rf pandoc-3.1.9 pandoc-3.1.9.tar.gz
|
||||||
RUN npm install -g pnpm
|
RUN npm install -g pnpm
|
||||||
|
|
Loading…
Reference in a new issue