We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b577b9c commit cd14c45Copy full SHA for cd14c45
1 file changed
src/frontend/Dockerfile
@@ -26,11 +26,12 @@ RUN npm run build
26
# 5. Reduced operational complexity - same monitoring, logging, and scaling patterns
27
#
28
# Trade-off: Larger container size vs operational simplicity benefits
29
+# NOTE: This architecture choice addresses maintainability through unified deployment patterns
30
FROM python:3.11-slim
31
32
WORKDIR /app
33
-# Copy Python requirements and install
34
+# Copy Python requirements and install dependencies
35
COPY requirements.txt .
36
RUN pip install --no-cache-dir -r requirements.txt
37
0 commit comments