AstraOS commited on
Commit
776a99b
·
verified ·
1 Parent(s): 50d13a9

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +20 -0
Dockerfile ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dockerfile
2
+ FROM python:3.9-slim
3
+
4
+ # Set a working directory
5
+ # WORKDIR /app
6
+ RUN apt-get update && apt-get install -y socat && rm -rf /var/lib/apt/lists/*
7
+
8
+ # Copy dependency definitions and install them
9
+ COPY requirements.txt .
10
+ RUN pip install --upgrade pip && pip install --no-cache-dir -r requirements.txt
11
+
12
+ # Copy the application code
13
+ COPY . .
14
+
15
+ # Expose the port that uvicorn will listen on (Hugging Face Spaces uses port 7860)
16
+ EXPOSE 7860
17
+
18
+ # Start the FastAPI app with uvicorn
19
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
20
+ # CMD ["python", "app.py"]