This commit is contained in:
team3
2026-06-04 15:24:33 +02:00
parent d08878289e
commit 1aef82ec40
17 changed files with 440 additions and 117 deletions

View File

@@ -23,7 +23,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
gnupg \
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y nodejs \
&& npm install -g @anthropic-ai/claude-code \
&& npm install -g @anthropic-ai/claude-code opencode-ai \
&& pip install --no-cache-dir uv \
&& rm -rf /var/lib/apt/lists/*
RUN useradd -m -u 1000 app
@@ -34,6 +35,7 @@ RUN pip install --no-cache-dir -r /app/backend/requirements.txt
COPY --chown=app:app backend/ /app/backend/
COPY --chown=app:app templates/ /app/templates/
COPY --chown=app:app --from=frontend /build/dist /app/frontend/dist
COPY --chown=app:app dev-ops/opencode.json /home/app/.config/opencode/opencode.json
RUN chown app:app /app