File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,12 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
4
4
# Remove imagemagick due to https://security-tracker.debian.org/tracker/CVE-2019-10131
5
5
&& apt-get purge -y imagemagick imagemagick-6-common
6
6
7
- # Add protoc
7
+ # setup the containers WORKDIR so npm install works
8
+ # https://stackoverflow.com/questions/57534295/npm-err-tracker-idealtree-already-exists-while-creating-the-docker-image-for
9
+ WORKDIR /root
10
+
11
+ # Add protoc, npm, prettier
8
12
# https://datafusion.apache.org/contributor-guide/development_environment.html#protoc-installation
9
13
RUN apt-get update \
10
- && apt-get install -y --no-install-recommends protobuf-compiler libprotobuf-dev \
14
+ && apt-get install -y --no-install-recommends protobuf-compiler libprotobuf-dev npm nodejs \
11
15
&& rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments