RELEASE 363 - AVAILABLE ON 30.08.2016.

This commit is contained in:
Marko Budiselic 2016-08-31 15:47:42 +01:00
parent f3af0effda
commit 95dd0a65b7
2 changed files with 15 additions and 2 deletions

View File

@ -76,10 +76,8 @@ public:
template <class... Args>
void debug(Args&&... args)
{
#ifndef NDEBUG
#ifndef LOG_NO_DEBUG
emit<Debug>(std::forward<Args>(args)...);
#endif
#endif
}

15
release/Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM ubuntu:16.04
RUN apt-get update \
&& apt-get install -y clang libssl-dev \
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN mkdir -p /libs
RUN mkdir -p /memgraph
COPY barrier /memgraph
COPY libs/fmt /libs/fmt
WORKDIR /memgraph
CMD ./memgraph_dev_f3af0ef_363_release