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 32
32
cache-from : type=gha
33
33
cache-to : type=gha,mode=max
34
34
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 \
62
62
nginx \
63
63
&& rm -rf /var/lib/apt/lists/*
64
64
65
- # Create a non-root user and switch to it
66
- RUN useradd -m -u 1000 -r codegate
67
-
68
65
# Create a non-root user
69
- RUN adduser --system --no-create-home codegate --uid 1000
66
+ RUN useradd -m -u 1000 -r codegate
70
67
71
68
# Set permissions for user codegate to run nginx
72
69
RUN chown -R codegate /var/lib/nginx && \
Original file line number Diff line number Diff line change @@ -14,4 +14,5 @@ echo "Starting the application..."
14
14
exec python -m src.codegate.cli serve --port 8989 --host 0.0.0.0 --vllm-url https://inference.codegate.ai
15
15
16
16
# 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 5
5
from typing import Dict , Optional
6
6
7
7
import click
8
- from src . codegate .storage .utils import restore_storage_backup
8
+ from codegate .storage .utils import restore_storage_backup
9
9
import structlog
10
10
11
11
from codegate .codegate_logging import LogFormat , LogLevel , setup_logging
You can’t perform that action at this time.
0 commit comments