Update Dockerfile
Browse files- 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 |
-
#
|
|
|
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
|