Skip to content

Commit

Permalink
feat(docker): add eval dependencies to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Pouyanpi committed Oct 22, 2024
1 parent db159c5 commit 6c38d5f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ RUN apt-get install -y gcc g++
# Copy and install NeMo Guardrails
WORKDIR /nemoguardrails
COPY . /nemoguardrails
# pip cannot resolve dependencies if eval is part of all
RUN pip install --no-cache-dir -e .[all]
RUN pip install --no-cache-dir -e .[eval]

# Make port 8000 available to the world outside this container
EXPOSE 8000
Expand Down

0 comments on commit 6c38d5f

Please sign in to comment.