Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ WORKDIR /app
RUN apt-get update && apt-get install -y git && \
apt-get clean && rm -rf /var/lib/apt/lists/* && \
pip install uv
COPY pyproject.toml uv.lock ./
COPY pyproject.toml uv.lock README.md main.py ./
COPY hummingbot_mcp/ ./hummingbot_mcp/
RUN uv venv && uv pip install .

# Stage 2: Runtime
Expand All @@ -27,4 +28,4 @@ COPY pyproject.toml ./
ENV DOCKER_CONTAINER=true

# Run the MCP server using the pre-built venv
ENTRYPOINT ["/app/.venv/bin/python", "main.py"]
ENTRYPOINT ["/app/.venv/bin/python", "main.py"]
Loading