Release dockerfile update, build argument is supported. CHANGELOG update.
Summary: Release dockerfile update, build argument is supported. CHANGELOG update. Reviewers: teon.banek, dgleich, mislav.bradac Reviewed By: teon.banek, dgleich Subscribers: pullbot, buda Differential Revision: https://phabricator.memgraph.io/D396
This commit is contained in:
@@ -8,6 +8,12 @@ TODO
|
||||
|
||||
### Bug Fixes and Other Changes
|
||||
|
||||
TODO
|
||||
|
||||
## Build 837
|
||||
|
||||
### Bug Fixes and Other Changes
|
||||
|
||||
* List indexing supported with preceeding IN (for example in query `RETURN 1 IN [[1,2]][0]`)
|
||||
|
||||
## Build 825
|
||||
|
||||
@@ -4,11 +4,9 @@ RUN apt-get update \
|
||||
&& apt-get install -y clang uuid-dev \
|
||||
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||
|
||||
ENV BINARY_NAME memgraph_733_d9e02d6_mg_release_script_debug
|
||||
ENV MEMGRAPH_CONFIG /memgraph/config/interpreter.yaml
|
||||
|
||||
COPY $BINARY_NAME /memgraph
|
||||
ARG build_name
|
||||
COPY ${build_name} /memgraph
|
||||
|
||||
WORKDIR /memgraph
|
||||
|
||||
CMD ./memgraph
|
||||
|
||||
Reference in New Issue
Block a user