This repository was archived by the owner on Jun 5, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +5
-7
lines changed
Expand file tree Collapse file tree 4 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 3232 cache-from : type=gha
3333 cache-to : type=gha,mode=max
3434 secrets : |
35- gh_token=${{ secrets.GITHUB_TOKEN }}
35+ gh_token=${{ secrets.GHP_TOKEN }}
Original file line number Diff line number Diff line change @@ -62,11 +62,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
6262 nginx \
6363 && rm -rf /var/lib/apt/lists/*
6464
65- # Create a non-root user and switch to it
66- RUN useradd -m -u 1000 -r codegate
67-
6865# Create a non-root user
69- RUN adduser --system --no-create-home codegate --uid 1000
66+ RUN useradd -m -u 1000 -r codegate
7067
7168# Set permissions for user codegate to run nginx
7269RUN chown -R codegate /var/lib/nginx && \
Original file line number Diff line number Diff line change @@ -14,4 +14,5 @@ echo "Starting the application..."
1414exec python -m src.codegate.cli serve --port 8989 --host 0.0.0.0 --vllm-url https://inference.codegate.ai
1515
1616# Step 3: Start the Nginx server with FE
17- nginx -g ' daemon off;'
17+ echo " Starting the dashboard.. "
18+ exec nginx -g ' daemon off;'
Original file line number Diff line number Diff line change 55from typing import Dict , Optional
66
77import click
8- from src . codegate .storage .utils import restore_storage_backup
8+ from codegate .storage .utils import restore_storage_backup
99import structlog
1010
1111from codegate .codegate_logging import LogFormat , LogLevel , setup_logging
You can’t perform that action at this time.
0 commit comments