Upload Dockerfile
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
|
@@ -18,6 +18,12 @@ COPY utils.py .
|
|
| 18 |
COPY schema.py .
|
| 19 |
COPY mcp_context.json .
|
| 20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
# Copy test files
|
| 22 |
COPY tests/ tests/
|
| 23 |
|
|
|
|
| 18 |
COPY schema.py .
|
| 19 |
COPY mcp_context.json .
|
| 20 |
|
| 21 |
+
# Copy documentation and metadata
|
| 22 |
+
COPY README.md LICENSE NOTICE ./
|
| 23 |
+
|
| 24 |
+
# Copy third-party licenses
|
| 25 |
+
COPY third_party/ ./third_party/
|
| 26 |
+
|
| 27 |
# Copy test files
|
| 28 |
COPY tests/ tests/
|
| 29 |
|