logging and containerization setup

This commit is contained in:
2026-03-12 00:39:53 +03:00
parent d7352b818d
commit be22de56ca
5 changed files with 326 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM ubuntu:18.04
RUN apt-get update && apt-get install -y \
build-essential \
cmake \
curl \
libev-dev \
libjson-c-dev \
libcouchbase-dev \
python \
python-pip \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /workspace