gkemp181 commited on
Commit
7d253e7
·
1 Parent(s): ad439a4

update dockerfile

Browse files
Files changed (1) hide show
  1. dockerfile +31 -13
dockerfile CHANGED
@@ -1,18 +1,36 @@
1
- # Use a lightweight Python base
2
- FROM python:3.10-slim
3
 
4
- # Set working directory in container
5
- WORKDIR /app
 
 
 
 
 
 
 
 
 
 
 
 
 
6
 
7
- # Copy and install dependencies
8
- COPY requirements.txt .
9
- RUN pip install --no-cache-dir -r requirements.txt
10
 
11
- # Copy your app code
12
- COPY . .
 
 
 
 
 
 
 
 
13
 
14
- # Expose the port the app runs on
15
- EXPOSE 7860
16
 
17
- # Run your app
18
- CMD ["python", "app.py"]
 
1
+ # # Use a lightweight Python base
2
+ # FROM python:3.10-slim
3
 
4
+ # # Set working directory in container
5
+ # WORKDIR /app
6
+
7
+ # # Copy and install dependencies
8
+ # COPY requirements.txt .
9
+ # RUN pip install --no-cache-dir -r requirements.txt
10
+
11
+ # # Copy your app code
12
+ # COPY . .
13
+
14
+ # # Expose the port the app runs on
15
+ # EXPOSE 7860
16
+
17
+ # # Run your app
18
+ # CMD ["python", "app.py"]
19
 
 
 
 
20
 
21
+ # Read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
22
+ # you will also find guides on how best to write your Dockerfile
23
+
24
+ FROM python:3.9
25
+
26
+ RUN useradd -m -u 1000 user
27
+ USER user
28
+ ENV PATH="/home/user/.local/bin:$PATH"
29
+
30
+ WORKDIR /app
31
 
32
+ COPY --chown=user ./requirements.txt requirements.txt
33
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
34
 
35
+ COPY --chown=user . /app
36
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]