pilotstuki Claude commited on
Commit
998f9e8
·
1 Parent(s): ddfcf3e

Fix Dockerfile: Add wget for HF Spaces build

Browse files

HF Spaces automatically installs VS Code Server which requires wget.
Added wget to system dependencies to fix build error.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -8,6 +8,7 @@ WORKDIR /app
8
  RUN apt-get update && apt-get install -y \
9
  build-essential \
10
  curl \
 
11
  && rm -rf /var/lib/apt/lists/*
12
 
13
  # Copy requirements file
 
8
  RUN apt-get update && apt-get install -y \
9
  build-essential \
10
  curl \
11
+ wget \
12
  && rm -rf /var/lib/apt/lists/*
13
 
14
  # Copy requirements file