Skip to content

Commit 487609e

Browse files
committed
dockerfile docs
1 parent c7eb646 commit 487609e

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

airbyte_cdk/manifest_server/Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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+
18
FROM python:3.12-slim-bookworm
29

310
# Install git (needed for dynamic versioning) and poetry

airbyte_cdk/manifest_server/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ poetry install --extras manifest-server
1414

1515
# Using pip
1616
pip 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
2629
manifest-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

3235
The server will start on `http://localhost:8000` by default.

0 commit comments

Comments
 (0)