Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -3
Dockerfile
CHANGED
@@ -45,9 +45,6 @@ FROM alpine AS weaviate
|
|
45 |
COPY --from=grpc_health_probe_builder /bin/grpc_health_probe /bin/
|
46 |
COPY --from=server_builder /weaviate-server /bin/weaviate
|
47 |
RUN chmod 755 /bin/weaviate
|
48 |
-
|
49 |
-
COPY /bin/weaviate /app
|
50 |
-
|
51 |
RUN apk add --no-cache --upgrade ca-certificates openssl
|
52 |
RUN mkdir ./modules
|
53 |
RUN mkdir -p /var/lib/weaviate/data
|
@@ -69,6 +66,8 @@ COPY ./semsearch.py /app/semsearch.py
|
|
69 |
COPY ./startup.sh /app/startup.sh
|
70 |
RUN chmod 755 /app/startup.sh
|
71 |
|
|
|
|
|
72 |
RUN mkdir -p /app/inputDocs
|
73 |
COPY ./inputDocs/* /app/inputDocs
|
74 |
|
|
|
45 |
COPY --from=grpc_health_probe_builder /bin/grpc_health_probe /bin/
|
46 |
COPY --from=server_builder /weaviate-server /bin/weaviate
|
47 |
RUN chmod 755 /bin/weaviate
|
|
|
|
|
|
|
48 |
RUN apk add --no-cache --upgrade ca-certificates openssl
|
49 |
RUN mkdir ./modules
|
50 |
RUN mkdir -p /var/lib/weaviate/data
|
|
|
66 |
COPY ./startup.sh /app/startup.sh
|
67 |
RUN chmod 755 /app/startup.sh
|
68 |
|
69 |
+
COPY --from=weaviate /bin/weaviate /app/weaviate
|
70 |
+
|
71 |
RUN mkdir -p /app/inputDocs
|
72 |
COPY ./inputDocs/* /app/inputDocs
|
73 |
|