Bjo53 commited on
Commit
8ecd616
·
verified ·
1 Parent(s): 0948bda

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -3
Dockerfile CHANGED
@@ -1,16 +1,18 @@
1
  FROM python:3.11-slim
2
 
3
- RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
4
 
5
  RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && apt-get install -y nodejs
6
 
 
 
7
  WORKDIR /app
8
 
9
  COPY requirements.txt .
10
  RUN pip install --no-cache-dir -r requirements.txt
11
 
12
- RUN pip install --no-cache-dir huggingface_hub==0.23.0 requests psutil openai anthropic
13
- RUN npm install -g @anthropic-ai/claude-code @openai/codex
14
 
15
  COPY . .
16
 
 
1
  FROM python:3.11-slim
2
 
3
+ RUN apt-get update && apt-get install -y curl wget git && rm -rf /var/lib/apt/lists/*
4
 
5
  RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && apt-get install -y nodejs
6
 
7
+ RUN pip install --no-cache-dir playwright && playwright install chromium
8
+
9
  WORKDIR /app
10
 
11
  COPY requirements.txt .
12
  RUN pip install --no-cache-dir -r requirements.txt
13
 
14
+ RUN pip install --no-cache-dir huggingface_hub==0.23.0 requests psutil openai anthropic opencode openhands antigravity
15
+ RUN npm install -g @anthropic-ai/claude-code @openai/codex opencode
16
 
17
  COPY . .
18