API-Handler commited on
Commit
3278e8a
·
verified ·
1 Parent(s): a620f6f

Upload 2 files

Browse files
Files changed (2) hide show
  1. Dockerfile +14 -0
  2. requirements.txt +1 -0
Dockerfile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10
2
+
3
+ WORKDIR /code
4
+
5
+ COPY ./requirements.txt /code/requirements.txt
6
+
7
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
+
9
+ COPY . .
10
+
11
+ RUN wget https://huggingface.co/datasets/API-Handler/Testing/resolve/main/app.py
12
+ RUN wget https://huggingface.co/datasets/API-Handler/Testing/resolve/main/data.txt
13
+
14
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ flask==2.0.1