broadfield-dev commited on
Commit
bb33ad4
·
verified ·
1 Parent(s): 6e57a92

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -5,7 +5,7 @@ FROM python:3.9-slim
5
  WORKDIR .
6
 
7
  # Copy the current directory contents into the container at /app
8
- COPY . /app
9
 
10
  # Install any needed packages specified in requirements.txt
11
  RUN pip install --no-cache-dir -r requirements.txt
@@ -17,4 +17,4 @@ RUN pip install ollama
17
  EXPOSE 8000
18
 
19
  # Run app.py when the container launches
20
- CMD ["python", "app/app.py"]
 
5
  WORKDIR .
6
 
7
  # Copy the current directory contents into the container at /app
8
+ COPY . .
9
 
10
  # Install any needed packages specified in requirements.txt
11
  RUN pip install --no-cache-dir -r requirements.txt
 
17
  EXPOSE 8000
18
 
19
  # Run app.py when the container launches
20
+ CMD ["python", "app.py"]