bla commited on
Commit
f9969cb
·
verified ·
1 Parent(s): 1fc0a3c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +21 -13
Dockerfile CHANGED
@@ -1,17 +1,18 @@
1
  # Use Python 3.12 as the base image
2
- FROM python:3.12
3
 
4
  # Install system dependencies
5
  RUN apt-get update && apt-get install -y \
6
  ffmpeg \
7
  git \
 
8
  && rm -rf /var/lib/apt/lists/*
9
 
10
  # Create a non-root user
11
  RUN useradd -m -u 1000 user
12
  WORKDIR /app
13
 
14
- # Install Python dependencies directly
15
  RUN pip install --no-cache-dir --upgrade pip && \
16
  pip install --no-cache-dir \
17
  torch \
@@ -21,24 +22,31 @@ RUN pip install --no-cache-dir --upgrade pip && \
21
  qwen-vl-utils[decord]==0.0.8 \
22
  fastapi \
23
  uvicorn[standard] \
24
- python-multipart \
25
- autoawq
 
 
26
 
27
  # Copy application files
28
- COPY --chown=user . /app
29
 
 
 
 
 
 
30
 
31
- # Create /temp directory and change its owner to the non-root user
32
- RUN mkdir /temp && chown user:user /temp
33
-
34
- # Switch to the non-root user
35
  USER user
36
 
37
-
38
-
39
  # Set environment variables
40
  ENV HOME=/home/user \
41
- PATH=/home/user/.local/bin:$PATH
 
 
 
 
 
42
 
43
  # Command to run the application
44
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
1
  # Use Python 3.12 as the base image
2
+ FROM python:3.12-slim
3
 
4
  # Install system dependencies
5
  RUN apt-get update && apt-get install -y \
6
  ffmpeg \
7
  git \
8
+ build-essential \
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
  # Create a non-root user
12
  RUN useradd -m -u 1000 user
13
  WORKDIR /app
14
 
15
+ # Install Python dependencies
16
  RUN pip install --no-cache-dir --upgrade pip && \
17
  pip install --no-cache-dir \
18
  torch \
 
22
  qwen-vl-utils[decord]==0.0.8 \
23
  fastapi \
24
  uvicorn[standard] \
25
+ python-multipart \
26
+ autoawq \
27
+ pillow \
28
+ pydantic
29
 
30
  # Copy application files
31
+ COPY --chown=user:user . /app
32
 
33
+ # Create cache directories and set permissions
34
+ RUN mkdir -p /home/user/.cache/huggingface && \
35
+ mkdir -p /temp && \
36
+ chown -R user:user /home/user/.cache && \
37
+ chown -R user:user /temp
38
 
39
+ # Switch to non-root user
 
 
 
40
  USER user
41
 
 
 
42
  # Set environment variables
43
  ENV HOME=/home/user \
44
+ PATH=/home/user/.local/bin:$PATH \
45
+ TRANSFORMERS_CACHE=/home/user/.cache/huggingface \
46
+ TORCH_HOME=/home/user/.cache/torch
47
+
48
+ # Expose the port
49
+ EXPOSE 7860
50
 
51
  # Command to run the application
52
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]