File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
airbyte_cdk/manifest_server Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,13 @@ WORKDIR /app
2222# Copy poetry files (build from project root)
2323COPY pyproject.toml poetry.lock ./
2424
25- # Install dependencies directly to system Python
25+ # Copy the project source code (needed for dynamic versioning)
26+ COPY . /app
27+
28+ # Install dependencies and package directly to system Python
2629RUN --mount=type=cache,target=$POETRY_CACHE_DIR \
2730 poetry config virtualenvs.create false && \
28- poetry install --extras manifest-server --no-root
29-
30- # Copy the project source code (including .git for dynamic versioning)
31- COPY . /app
31+ poetry install --extras manifest-server
3232
3333# Create a non-root user and group
3434RUN groupadd --gid 1000 airbyte && \
You can’t perform that action at this time.
0 commit comments