We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a98e42 commit 65725e0Copy full SHA for 65725e0
1 file changed
Dockerfile.operator
@@ -14,9 +14,9 @@ RUN apt-get update && apt-get install -y \
14
git \
15
&& rm -rf /var/lib/apt/lists/*
16
17
-# Copy requirements and install
18
-COPY requirements.txt .
19
-RUN pip install --no-cache-dir -r requirements.txt
+# Copy pyproject.toml and install
+COPY pyproject.toml .
+RUN pip install --no-cache-dir -e .
20
21
# Copy source code
22
COPY . .
@@ -29,4 +29,4 @@ ENV PYTHONPATH=/app
29
EXPOSE 8000
30
31
# Start the operator API
32
-CMD ["python", "-m", "src.api.main"]
+CMD ["python", "-m", "src.api.main"]
0 commit comments