Tu Nombre commited on
Commit
db96bfb
·
1 Parent(s): b9d9444

Actualización: Cambio a modelo Llama 3.1 8B

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -2,6 +2,6 @@ FROM python:3.10-slim
2
  WORKDIR /app
3
  COPY requirements.txt .
4
  RUN pip install -r requirements.txt
5
- COPY app.py .
6
  EXPOSE 7860
7
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
2
  WORKDIR /app
3
  COPY requirements.txt .
4
  RUN pip install -r requirements.txt
5
+ COPY main.py .
6
  EXPOSE 7860
7
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]