38c40096c5
Summary: Interpreter build script + dockerfile. Reviewers: teon.banek Reviewed By: teon.banek Subscribers: pullbot, buda Differential Revision: https://phabricator.memgraph.io/D275
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
|