DataChem commited on
Commit
a1dd175
·
verified ·
1 Parent(s): e05b36f

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +17 -0
Dockerfile ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use a lightweight Python image
2
+ FROM python:3.9
3
+
4
+ # Create a non-root user
5
+ RUN useradd -u 1000 user
6
+ USER user
7
+ ENV PATH="/home/user/.local/bin:$PATH"
8
+
9
+ # Set the working directory inside the container
10
+ WORKDIR /app
11
+
12
+ # Copy the dependencies and install them
13
+ COPY --chown=user . /app
14
+ RUN pip install --no-cache-dir -r requirements.txt
15
+
16
+ # Run the FastAPI app with Uvicorn
17
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]