change dockerfile
Browse files- Dockerfile +7 -7
- app.py +0 -1
Dockerfile
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
# Use the official Python 3.10.9 image
|
2 |
-
FROM python:3.
|
3 |
|
4 |
# Copy the current directory contents into the container at .
|
5 |
-
|
|
|
|
|
6 |
|
7 |
-
|
8 |
-
WORKDIR /
|
9 |
|
10 |
-
|
11 |
-
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
|
12 |
|
13 |
# Start the FastAPI app on port 7860, the default port expected by Spaces
|
14 |
-
CMD ["uvicorn", "
|
|
|
1 |
# Use the official Python 3.10.9 image
|
2 |
+
FROM python:3.9
|
3 |
|
4 |
# Copy the current directory contents into the container at .
|
5 |
+
WORKDIR /code
|
6 |
+
|
7 |
+
COPY ./requirements.txt /code/requirements.txt
|
8 |
|
9 |
+
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
|
10 |
|
11 |
+
COPY . .
|
|
|
12 |
|
13 |
# Start the FastAPI app on port 7860, the default port expected by Spaces
|
14 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|
app.py
CHANGED
@@ -3,7 +3,6 @@ from fastapi.middleware.cors import CORSMiddleware
|
|
3 |
from pydantic import BaseModel
|
4 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
5 |
import torch
|
6 |
-
import os
|
7 |
|
8 |
# Inisialisasi model dan tokenizer
|
9 |
model_name = "w11wo/indonesian-roberta-base-sentiment-classifier"
|
|
|
3 |
from pydantic import BaseModel
|
4 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
5 |
import torch
|
|
|
6 |
|
7 |
# Inisialisasi model dan tokenizer
|
8 |
model_name = "w11wo/indonesian-roberta-base-sentiment-classifier"
|