AETHER-3321 Refactor configuration code in enodebd
AETHER-3520 Make enodebd containerized
AETHER-3504 Geomap of Grafana with enodeb coordinate information
Change-Id: Ie425254fa1a8b286004d2bcd366cf6c7057c925c
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..60b19ce
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,16 @@
+#syntax=docker/dockerfile:1
+
+FROM ubuntu:20.04
+RUN apt update && apt install -y --no-install-recommends \
+ build-essential \
+ curl \
+ git \
+ unzip \
+ python3 \
+ python3-dev \
+ python3-venv \
+ python3-pip
+
+COPY . /opt/enodebd
+WORKDIR /opt/enodebd
+RUN make venv && make install-protoc && make proto