ar08 commited on
Commit
76930e6
·
verified ·
1 Parent(s): b22ddd6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -3
Dockerfile CHANGED
@@ -7,10 +7,11 @@ WORKDIR /Verba
7
  RUN apt-get update && apt-get install -y git \
8
  && mkdir -p /Verba/.cache && chmod -R 777 /Verba/.cache
9
 
10
- # Clone the repository
11
- RUN git clone https://github.com/weaviate/Verba.git .
12
 
13
- # Install the package
 
14
  RUN pip install -e .
15
 
16
  # Expose the port
 
7
  RUN apt-get update && apt-get install -y git \
8
  && mkdir -p /Verba/.cache && chmod -R 777 /Verba/.cache
9
 
10
+ # Clone the repository into a subdirectory
11
+ RUN git clone https://github.com/weaviate/Verba.git /Verba/Verba
12
 
13
+ # Change to the cloned directory and install the package
14
+ WORKDIR /Verba/Verba
15
  RUN pip install -e .
16
 
17
  # Expose the port