aledraa commited on
Commit
2e7ed2d
·
verified ·
1 Parent(s): 46c8b46

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -10
Dockerfile CHANGED
@@ -1,15 +1,18 @@
1
- FROM python:3.9-slim
 
2
 
3
- WORKDIR /app
 
4
 
5
- # Install dependencies
6
- RUN pip install torch transformers fastapi uvicorn pydantic
7
 
8
- # Copy model loading script
9
- COPY app.py .
10
 
11
- # Expose port
12
- EXPOSE 7860
13
 
14
- # Run the API
15
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
1
+ # Use an official Python runtime as a parent image
2
+ FROM python:3.10-slim
3
 
4
+ # Set the working directory in the container
5
+ WORKDIR /code
6
 
7
+ # Copy the requirements file into the container at /code
8
+ COPY ./requirements.txt /code/requirements.txt
9
 
10
+ # Install any needed packages specified in requirements.txt
11
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
12
 
13
+ # Copy the rest of the application code into the container at /code
14
+ COPY ./main.py /code/main.py
15
 
16
+ # Command to run the app using uvicorn.
17
+ # It will be available on port 7860, the standard for HF Spaces
18
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]