Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #1333 dependency and CMD in DockerFile #1335

Merged
merged 1 commit into from
Nov 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"]