kashif HF Staff commited on
Commit
fbb006e
·
verified ·
1 Parent(s): d6cf1e8

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -36,6 +36,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
36
  # Copy environment files first (for better caching)
37
  COPY . .
38
 
 
 
 
39
  # Install Python dependencies using pip install -e . (from pyproject.toml)
40
  RUN pip install --no-cache-dir -e .
41
 
 
36
  # Copy environment files first (for better caching)
37
  COPY . .
38
 
39
+ # Make start script executable
40
+ RUN chmod +x /app/env/server/start.sh
41
+
42
  # Install Python dependencies using pip install -e . (from pyproject.toml)
43
  RUN pip install --no-cache-dir -e .
44