Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -44,6 +44,7 @@ FROM alpine AS weaviate
|
|
44 |
#ENTRYPOINT ["/bin/weaviate"]
|
45 |
COPY --from=grpc_health_probe_builder /bin/grpc_health_probe /bin/
|
46 |
COPY --from=server_builder /weaviate-server /bin/weaviate
|
|
|
47 |
RUN apk add --no-cache --upgrade ca-certificates openssl
|
48 |
RUN mkdir ./modules
|
49 |
RUN mkdir -p /var/lib/weaviate/data
|
@@ -64,8 +65,6 @@ COPY ./requirements.txt /app/requirements.txt
|
|
64 |
COPY ./semsearch.py /app/semsearch.py
|
65 |
COPY ./startup.sh /app/startup.sh
|
66 |
RUN chmod 755 /app/startup.sh
|
67 |
-
COPY ./bin/weaviate /app/weaviate
|
68 |
-
RUN chmod 755 /app/weaviate
|
69 |
|
70 |
RUN mkdir -p /app/inputDocs
|
71 |
COPY ./inputDocs/* /app/inputDocs
|
|
|
44 |
#ENTRYPOINT ["/bin/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 |
RUN apk add --no-cache --upgrade ca-certificates openssl
|
49 |
RUN mkdir ./modules
|
50 |
RUN mkdir -p /var/lib/weaviate/data
|
|
|
65 |
COPY ./semsearch.py /app/semsearch.py
|
66 |
COPY ./startup.sh /app/startup.sh
|
67 |
RUN chmod 755 /app/startup.sh
|
|
|
|
|
68 |
|
69 |
RUN mkdir -p /app/inputDocs
|
70 |
COPY ./inputDocs/* /app/inputDocs
|