From 536309fa1a945f09817d24f35dc8ac127ea2e39c Mon Sep 17 00:00:00 2001 From: albnnc Date: Mon, 6 Jul 2026 15:42:34 +0300 Subject: [PATCH] fix: proper dockerfile --- dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dockerfile b/dockerfile index 91f50e0..0092762 100644 --- a/dockerfile +++ b/dockerfile @@ -1,6 +1,5 @@ FROM python:3.12-slim WORKDIR /app -COPY pyproject.toml ./ -RUN pip install --no-cache-dir -e ".[http]" COPY . . +RUN pip install --no-cache-dir -e ".[http]" CMD ["owa-mcp"]