This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix docs buildimage bug due to inline comments (#1154)
- Loading branch information
1 parent
9d5c532
commit 5f0f013
Showing
2 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,15 +3,16 @@ LABEL MAINTAINER="Niraj Tolia" | |
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
# NOTE for lines 13,15: update in CI when updating | ||
RUN apt-get -y update && apt-get -y install gpg emacs curl git make \ | ||
&& curl -fsSL https://deb.nodesource.com/setup_current.x | bash - \ | ||
&& apt-get -y install nodejs \ | ||
&& apt-get autoclean \ | ||
&& node --version \ | ||
&& npm --version \ | ||
&& cd /tmp && curl -O -L https://github.com/errata-ai/vale/releases/download/v2.20.1/vale_2.20.1_Linux_64-bit.tar.gz \ # NOTE: update in CI when updating | ||
&& cd /tmp && curl -O -L https://github.com/errata-ai/vale/releases/download/v2.20.1/vale_2.20.1_Linux_64-bit.tar.gz \ | ||
&& tar -xvzf vale_2.20.1_Linux_64-bit.tar.gz -C /usr/bin vale \ | ||
&& npm install -g [email protected] # NOTE: update in CI when updating | ||
&& npm install -g [email protected] | ||
|
||
WORKDIR /usr/src | ||
COPY package.json package-lock.json* ./ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters