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:
Marko Budiselic
2017-05-25 08:38:46 +02:00
parent a2d3577f0f
commit d3d8264fae
2 changed files with 8 additions and 4 deletions

View File

@@ -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

View File

@@ -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