From a21e57b2f0727f07a3f41f347d1b2983b79699a8 Mon Sep 17 00:00:00 2001 From: kumeagidi <54588820+kumeagidi@users.noreply.github.com> Date: Thu, 2 Nov 2023 15:38:48 -0400 Subject: [PATCH] Fix #1333 dependency and CMD in DockerFile --- docker/Dockerfile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 325cc2ffc..630b1dcb1 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -15,6 +15,11 @@ RUN apt-get update && \ apt-get autoclean -y && \ rm -rf /var/cache/apt/* /var/lib/apt/lists/* +# Install gcc and python3.9-dev +RUN apt-get update && apt-get install -y \ + gcc \ + python3.9-dev + # Install pip RUN curl -O https://bootstrap.pypa.io/get-pip.py && \ python3.9 get-pip.py && \ @@ -32,5 +37,5 @@ RUN python3.9 -m pip install evadb # Expose the default port EvaDB runs on EXPOSE 8803 -# Start EvaDB -CMD ["eva_server"] \ No newline at end of file +# Start EvaDB server +CMD ["evadb_server"] \ No newline at end of file