Skip to content

Commit

Permalink
Changes in Dockerfile to support ai. Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
OscarAkaElvis committed Oct 24, 2024
1 parent b233c61 commit f5fa2f9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
- Added support for different LLM providers: Ollama, OpenAI, Anthropic, Mistral-AI, AzureOpenAI and Gemini
- Added AI LLM suggested commands history
- Added AI LLM debug mode
- Created separated ruby gem for AI version
- Created Docker ai tagged autobuild image
- Updated documentation

### 3.8
Expand Down
9 changes: 7 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,17 @@ COPY . /opt/evil-winrm
#ENV BRANCH="dev"
#RUN git clone -b ${BRANCH} ${EVILWINRM_URL}

# Install Evil-WinRM ruby dependencies
# Install Evil-WinRM ruby dependencies including AI ruby gems
RUN gem install winrm \
winrm-fs \
stringio \
logger \
fileutils
fileutils \
langchainrb \
ollama-ai \
anthropic \
mistral-ai \
ruby-openai

# Clean and remove useless files
RUN rm -rf /opt/evil-winrm/resources > /dev/null 2>&1 && \
Expand Down

0 comments on commit f5fa2f9

Please sign in to comment.