agentsay commited on
Commit
31b00d1
·
verified ·
1 Parent(s): a01a392

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -14
Dockerfile CHANGED
@@ -1,14 +1,14 @@
1
- FROM python:3.10-slim
2
-
3
- WORKDIR /app
4
-
5
- COPY requirements.txt .
6
- RUN pip install --no-cache-dir -r requirements.txt
7
-
8
- COPY main.py .
9
- COPY synthetic_ps_points.geojson .
10
- COPY synthetic_ps_points.csv .
11
-
12
- EXPOSE 7860
13
-
14
- CMD ["uvicorn", "main:main", "--host", "0.0.0.0", "--port", "7860"]
 
1
+ FROM python:3.10-slim
2
+
3
+ WORKDIR /app
4
+
5
+ COPY requirements.txt .
6
+ RUN pip install --no-cache-dir -r requirements.txt
7
+
8
+ COPY main.py .
9
+ COPY synthetic_ps_points.geojson .
10
+ COPY synthetic_ps_points.csv .
11
+
12
+ EXPOSE 7860
13
+
14
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]