Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
roypaulin committed Feb 20, 2024
1 parent a990c57 commit a83c8d3
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions docker-verticapy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ ENV SPARK_HOME=/opt/spark
ENV SPARK_VERSION=${SPARK_VERSION}

# Install python dependencies
RUN pip install --upgrade pip \
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
&& apt-get -y install nodejs \
&& pip install --upgrade pip \
&& pip install -r requirements.txt \
&& pip install /project/vertica_tools \
&& pip install PySpark==${SPARK_VERSION} \
Expand All @@ -50,10 +52,7 @@ RUN pip install --upgrade pip \
&& chmod 755 /usr/bin/vsql \
&& chmod 755 /usr/bin/run-vsql \
&& chmod 755 /usr/bin/run-admintools \
&& rm requirements.txt \
# Install nodejs
&& curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
&& apt-get -y install nodejs
&& rm requirements.txt


EXPOSE 8888
Expand Down

0 comments on commit a83c8d3

Please sign in to comment.