082465ff15
Summary: For each hardcoded query plan there is a build target -> that will improve Memgraph's testability + update of release script (release/alpha.sh) Reviewers: florijan, mislav.bradac, mferencevic, dgleich Reviewed By: dgleich Subscribers: pullbot, buda Differential Revision: https://phabricator.memgraph.io/D75
15 lines
323 B
Docker
15 lines
323 B
Docker
FROM ubuntu:16.04
|
|
|
|
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_552_545344b_mg_release_debug
|
|
ENV MEMGRAPH_CONFIG /memgraph/config/memgraph.yaml
|
|
|
|
COPY $BINARY_NAME /memgraph
|
|
|
|
WORKDIR /memgraph
|
|
|
|
CMD ./memgraph
|