mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-07-12 02:50:41 -07:00
7f00c5fe59
Co-authored-by: Christian Gunderman <gundermanc@google.com>
10 lines
135 B
Docker
10 lines
135 B
Docker
FROM node:20-slim
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm ci
|
|
COPY . .
|
|
RUN npm run build
|
|
EXPOSE 8080
|
|
CMD ["node", "dist/server.js"]
|
|
|