Skip to content
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
# Copy project files
COPY pyproject.toml README.md /app/
COPY highcommand/ /app/highcommand/
# Install Python dependencies
RUN pip install --no-cache-dir -e .
# Install Python dependencies with HTTP support for Kubernetes deployment
RUN pip install --no-cache-dir -e ".[http]"

# Set environment variables
ENV PYTHONUNBUFFERED=1
Expand Down