Skip to content

Commit

Permalink
Fix #1333 dependency and CMD in DockerFile (#1335)
Browse files Browse the repository at this point in the history
Update the DockerFile in order to resolve dependency issues along with
fixing the invalid CMD that was previously passed in.
  • Loading branch information
kumeagidi authored Nov 3, 2023
1 parent 21aee56 commit f56ef82
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand All @@ -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"]
# Start EvaDB server
CMD ["evadb_server"]

0 comments on commit f56ef82

Please sign in to comment.