We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dd2dcb commit f4f8ed7Copy full SHA for f4f8ed7
services/bot/Dockerfile
@@ -27,13 +27,10 @@ ENV UV_SYSTEM_PYTHON=1 \
27
# Copy workspace configuration files
28
COPY pyproject.toml uv.lock ./
29
30
-# Copy shared packages and service code
+# Copy all workspace members (needed to satisfy lockfile)
31
COPY packages/byte-common ./packages/byte-common
32
COPY services/bot ./services/bot
33
-
34
-# Create stub for services/api to satisfy workspace definition
35
-RUN mkdir -p services/api/src && \
36
- echo '[project]\nname = "byte-api"\nversion = "0.1.0"' > services/api/pyproject.toml
+COPY services/api ./services/api
37
38
# Install dependencies with frozen lockfile (no dev dependencies)
39
# This creates a .venv directory with all dependencies
0 commit comments