File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
airbyte_cdk/manifest_server Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1+ # Dockerfile for the Airbyte Manifest Server.
2+ #
3+ # This Dockerfile should be built from the root of the repository.
4+ #
5+ # Example:
6+ # docker build -f airbyte_cdk/manifest_server/Dockerfile -t airbyte/manifest-server .
7+
18FROM python:3.12-slim-bookworm
29
310# Install git (needed for dynamic versioning) and poetry
Original file line number Diff line number Diff line change @@ -14,6 +14,9 @@ poetry install --extras manifest-server
1414
1515# Using pip
1616pip install airbyte-cdk[manifest-server]
17+
18+ # Using uv
19+ uv pip install ' airbyte-cdk[manifest-runner]'
1720```
1821
1922### Running the Server
@@ -26,7 +29,7 @@ manifest-server start
2629manifest-server start --port 8080
2730
2831# Or using Python module
29- python -m airbyte_cdk.cli. manifest_server._run start
32+ python -m airbyte_cdk.manifest_server.cli.run start
3033```
3134
3235The server will start on ` http://localhost:8000 ` by default.
You can’t perform that action at this time.
0 commit comments