Spaces:
Sleeping
Sleeping
Dir 0
Browse files- Dockerfile +2 -2
- alzheimer_weight.pth β app/alzheimer_weight.pth +0 -0
- app.py β app/main.py +0 -0
- utils.py β app/utils.py +0 -0
Dockerfile
CHANGED
@@ -6,6 +6,6 @@ COPY ./requirements.txt /code/requirements.txt
|
|
6 |
|
7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
8 |
|
9 |
-
COPY
|
10 |
|
11 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
6 |
|
7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
8 |
|
9 |
+
COPY ./app /code/app
|
10 |
|
11 |
+
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|
alzheimer_weight.pth β app/alzheimer_weight.pth
RENAMED
File without changes
|
app.py β app/main.py
RENAMED
File without changes
|
utils.py β app/utils.py
RENAMED
File without changes
|