Skip to content

Commit 902a7d3

Browse files
committed
fix dockerfile
1 parent a416994 commit 902a7d3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

airbyte_cdk/manifest_server/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ WORKDIR /app
2222
# Copy poetry files (build from project root)
2323
COPY 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
2629
RUN --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
3434
RUN groupadd --gid 1000 airbyte && \

0 commit comments

Comments
 (0)