Genzo1010 commited on
Commit
be7b5eb
·
verified ·
1 Parent(s): 0b86be7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -13
Dockerfile CHANGED
@@ -2,9 +2,9 @@
2
  FROM python:3.10
3
 
4
 
5
- RUN useradd admin
6
 
7
- USER admin
8
 
9
  ENV HOME=/home/user \
10
  PATH=/home/user/.local/bin:$PATH
@@ -14,17 +14,12 @@ WORKDIR $HOME/app
14
 
15
  COPY --chown=user ./ $HOME/app
16
 
17
- # Expose port 80
18
- EXPOSE 80
19
-
20
  # Install OpenCV and poppler-utils dependencies
21
  RUN apt-get update && apt-get install -y libgl1-mesa-glx libglib2.0-0 libsm6 poppler-utils
22
 
23
- # Copy just the requirements file into the working directory
24
- COPY ./requirements.txt /code/requirements.txt
25
 
26
  # Install dependencies from the requirements file
27
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
28
 
29
  # Install PyTorch or TensorFlow
30
  RUN pip install torch torchvision
@@ -32,8 +27,4 @@ RUN pip install torch torchvision
32
  # Set environment variable to indicate PyTorch usage
33
  ENV USE_TORCH=1
34
 
35
- # Copy the rest of the application code into the working directory
36
- COPY . .
37
-
38
- # Set the entry point to run the FastAPI app with uvicorn
39
- CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
 
2
  FROM python:3.10
3
 
4
 
5
+ RUN useradd user
6
 
7
+ USER user
8
 
9
  ENV HOME=/home/user \
10
  PATH=/home/user/.local/bin:$PATH
 
14
 
15
  COPY --chown=user ./ $HOME/app
16
 
 
 
 
17
  # Install OpenCV and poppler-utils dependencies
18
  RUN apt-get update && apt-get install -y libgl1-mesa-glx libglib2.0-0 libsm6 poppler-utils
19
 
 
 
20
 
21
  # Install dependencies from the requirements file
22
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
23
 
24
  # Install PyTorch or TensorFlow
25
  RUN pip install torch torchvision
 
27
  # Set environment variable to indicate PyTorch usage
28
  ENV USE_TORCH=1
29
 
30
+ CMD fastapi run --reload --host=0.0.0.0 --port=7860