Zai commited on
Commit
4836c70
·
1 Parent(s): 06db6e9
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -4,8 +4,8 @@ FROM python:3.7
4
  # Set the working directory to /app
5
  WORKDIR /app
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 torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117 -U
 
4
  # Set the working directory to /app
5
  WORKDIR /app
6
 
7
+ # Copy the contents of the Interface folder into the container at /app
8
+ COPY Interface /app
9
 
10
  # Install any needed packages specified in requirements.txt
11
  RUN pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117 -U