pgits commited on
Commit
7718ce4
·
verified ·
1 Parent(s): 27f2588

Fix v1.3.1: Dockerfile - Add wget, tar for HF Spaces compatibility

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -2,10 +2,12 @@ FROM python:3.10-slim
2
 
3
  WORKDIR /app
4
 
5
- # Install system dependencies needed for Moshi
6
  RUN apt-get update && apt-get install -y \
 
7
  curl \
8
  git \
 
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
  # Copy requirements and install Python dependencies
 
2
 
3
  WORKDIR /app
4
 
5
+ # Install system dependencies including wget for HF Spaces compatibility
6
  RUN apt-get update && apt-get install -y \
7
+ wget \
8
  curl \
9
  git \
10
+ tar \
11
  && rm -rf /var/lib/apt/lists/*
12
 
13
  # Copy requirements and install Python dependencies