memgraph/release/alpha_interpreter.dockerfile
Marko Budiselic d3d8264fae 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
2017-05-25 12:01:17 +02:00

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