d3d8264fae
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
13 lines
286 B
Docker
13 lines
286 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 MEMGRAPH_CONFIG /memgraph/config/interpreter.yaml
|
|
ARG build_name
|
|
COPY ${build_name} /memgraph
|
|
|
|
WORKDIR /memgraph
|
|
CMD ./memgraph
|