dzs commited on
Commit
944627c
·
1 Parent(s): 1df9f37

added debug mechanism

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -10,6 +10,9 @@ COPY . /app
10
  # Install Flask
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
 
 
 
13
  # Expose default port
14
  EXPOSE 7860
15
 
 
10
  # Install Flask
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
+ # Build and install your local package (compiles Cython extension)
14
+ RUN pip install --no-cache-dir -e .
15
+
16
  # Expose default port
17
  EXPOSE 7860
18