LazyBoss commited on
Commit
7348a36
·
verified ·
1 Parent(s): 9e36bec

Update Docker

Browse files
Files changed (1) hide show
  1. Docker +18 -20
Docker CHANGED
@@ -1,20 +1,18 @@
1
- # Use the official Python image from the Docker Hub
2
- FROM python:3.8-slim
3
-
4
- # Set the working directory
5
- WORKDIR /app
6
-
7
- # Copy the requirements file into the container
8
- COPY requirements.txt requirements.txt
9
-
10
- # Install dependencies
11
- RUN pip install -r requirements.txt
12
-
13
- # Copy the rest of the application into the container
14
- COPY . .
15
-
16
- # Expose port 8080
17
- EXPOSE 8080
18
-
19
- # Run the Flask app
20
- CMD ["python", "app.py"]
 
1
+ FROM python:3.9
2
+
3
+ # Create a user and set up environment
4
+ RUN useradd -m -u 1000 user
5
+ USER user
6
+ ENV PATH="/home/user/.local/bin:$PATH"
7
+
8
+ WORKDIR /app
9
+
10
+ # Copy the requirements file and install dependencies
11
+ COPY --chown=user ./requirements.txt requirements.txt
12
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
13
+
14
+ # Copy the application code into the container
15
+ COPY --chown=user . /app
16
+
17
+ # Command to run the FastAPI app using Uvicorn
18
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]