RELEASE 363 - AVAILABLE ON 30.08.2016.
This commit is contained in:
parent
f3af0effda
commit
95dd0a65b7
@ -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
15
release/Dockerfile
Normal 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
|
Loading…
Reference in New Issue
Block a user