matthoffner commited on
Commit
756ebd4
·
1 Parent(s): 7c56e97

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -2,7 +2,7 @@ FROM python:latest
2
 
3
  ENV PYTHONUNBUFFERED 1
4
 
5
- EXPOSE 8080
6
 
7
  WORKDIR /app
8
 
@@ -19,4 +19,4 @@ RUN git clone https://huggingface.co/TheBloke/wizardLM-7B-GGML
19
  COPY . .
20
  RUN ls -al
21
 
22
- CMD uvicorn main:app --host 0.0.0.0 --port 8080 --workers 1
 
2
 
3
  ENV PYTHONUNBUFFERED 1
4
 
5
+ EXPOSE 8000
6
 
7
  WORKDIR /app
8
 
 
19
  COPY . .
20
  RUN ls -al
21
 
22
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]