rapid12k4 commited on
Commit
f39dc51
·
verified ·
1 Parent(s): 8e966cd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -15
Dockerfile CHANGED
@@ -1,23 +1,18 @@
1
  # Base image
2
- FROM python:3.9
3
 
4
- # Create a new user for security
5
- RUN useradd -m -u 1000 user
6
- USER user
7
- ENV PATH="/home/user/.local/bin:$PATH"
8
-
9
- # Set the working directory
10
  WORKDIR /app
11
 
12
  # Copy requirements and install dependencies
13
- COPY --chown=user ./requirements.txt requirements.txt
14
- RUN pip install --no-cache-dir --upgrade -r requirements.txt
15
 
16
- # Copy the application code
17
- COPY --chown=user . /app
18
 
19
- # Expose the port on which the app will run
20
- EXPOSE 7860
21
 
22
- # Start the FastAPI application
23
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
1
  # Base image
2
+ FROM python:3.9-slim
3
 
4
+ # Working directory
 
 
 
 
 
5
  WORKDIR /app
6
 
7
  # Copy requirements and install dependencies
8
+ COPY requirements.txt .
9
+ RUN pip install --no-cache-dir -r requirements.txt
10
 
11
+ # Copy app code
12
+ COPY app.py .
13
 
14
+ # Expose port
15
+ EXPOSE 8000
16
 
17
+ # Automatically start the app
18
+ CMD ["python", "app.py"]