mojad121 commited on
Commit
a8ec8f1
·
verified ·
1 Parent(s): 98c3591

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -2,7 +2,7 @@ FROM python:3.9-slim
2
 
3
  WORKDIR /app
4
 
5
- # Install system dependencies
6
  RUN apt-get update && apt-get install -y \
7
  build-essential \
8
  curl \
@@ -11,7 +11,7 @@ RUN apt-get update && apt-get install -y \
11
  libsndfile1 \
12
  && rm -rf /var/lib/apt/lists/*
13
 
14
- # Create a writable cache directory
15
  RUN mkdir -p /app/.cache && chmod -R 777 /app/.cache
16
 
17
  ENV TRANSFORMERS_CACHE=/app/.cache/huggingface
 
2
 
3
  WORKDIR /app
4
 
5
+ # System dependencies
6
  RUN apt-get update && apt-get install -y \
7
  build-essential \
8
  curl \
 
11
  libsndfile1 \
12
  && rm -rf /var/lib/apt/lists/*
13
 
14
+ # Create writable cache directory
15
  RUN mkdir -p /app/.cache && chmod -R 777 /app/.cache
16
 
17
  ENV TRANSFORMERS_CACHE=/app/.cache/huggingface