Darpan commited on
Commit
46b68a4
1 Parent(s): ae9cafc

Minor fixes

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -4
Dockerfile CHANGED
@@ -3,14 +3,13 @@ LABEL authors="dxarpanjain"
3
 
4
  # Install dependencies
5
  RUN pip install --upgrade pip
6
- RUN #pip install -r requirements.txt
7
 
8
  # Copy the current directory contents into the container at /app
9
  COPY . /app
10
 
11
  # Set the working directory to /app
12
- WORKDIR /app
13
 
14
  # Run app.py when the container launches
15
- RUN conda activate chat_exp
16
- CMD ["python3", "app_chat.py"]
 
3
 
4
  # Install dependencies
5
  RUN pip install --upgrade pip
6
+ RUN pip install -r requirements.txt
7
 
8
  # Copy the current directory contents into the container at /app
9
  COPY . /app
10
 
11
  # Set the working directory to /app
12
+ RUN cd /app
13
 
14
  # Run app.py when the container launches
15
+ CMD ["python3", "app_chat.py"]