@@ -5,7 +5,7 @@ ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy
55ENV GITHUB_WORKSPACE=/workspace
66LABEL com.circleci.preserve-entrypoint=true
77# RUN uv tool install keyring --with keyrings.codeartifact
8- # # Change the working directory to the `graph-sitter ` directory
8+ # # Change the working directory to the `codegen-sdk ` directory
99FROM base_uv AS install-tools
1010RUN apt-get update && apt-get install -y build-essential curl git
1111RUN curl -fsSL https://deb.nodesource.com/setup_23.x -o nodesource_setup.sh
@@ -15,7 +15,7 @@ RUN corepack enable
1515RUN --mount=type=cache,target=/root/.cache/uv uv pip install --system coverage
1616RUN --mount=type=cache,target=/root/.cache/uv uv tool install codecov-cli --python 3.10
1717RUN --mount=type=cache,target=/root/.cache/uv uv tool install pre-commit --with pre-commit-uv
18- WORKDIR /graph-sitter
18+ WORKDIR /codegen-sdk
1919ENTRYPOINT [ "uv" , "run" , "--frozen" , "/bin/bash" ]
2020FROM install-tools AS base-image
2121# # Install dependencies
@@ -24,7 +24,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
2424 --mount=type=bind,source=pyproject.toml,target=pyproject.toml \
2525 --mount=type=bind,source=hatch.toml,target=hatch.toml \
2626 uv sync --frozen --no-install-workspace --all-extras
27- ADD . /graph-sitter
27+ ADD . /codegen-sdk
2828# # Sync the project
2929RUN --mount=type=cache,target=/root/.cache/uv \
3030 uv sync --frozen --all-extras
0 commit comments