-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
32 lines (22 loc) · 719 Bytes
/
Dockerfile
File metadata and controls
32 lines (22 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
ENV TZ=UTC
RUN apt-get update && apt-get install -y \
curl \
git \
jq \
gh \
python3 \
python3-pip \
&& rm -rf /var/lib/apt/lists/*
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y nodejs \
&& rm -rf /var/lib/apt/lists/*
RUN npm install -g @google/gemini-cli
RUN gh auth login --with-token < /dev/null || true
WORKDIR /app
COPY . .
RUN chmod +x scripts/setup.sh 2>/dev/null || true
LABEL org.opencontainers.image.source="https://github.com/RahRha-v3-2/backgroundAgent"
LABEL org.opencontainers.image.description="Self-driving AI agent system powered by Gemini CLI"
CMD ["/bin/bash"]