diff --git a/CAL/Docker/Dockerfile b/CAL/Docker/Dockerfile
deleted file mode 100644
index 291982c38d5459e64c65dfab2cecf36afbbfda40..0000000000000000000000000000000000000000
--- a/CAL/Docker/Dockerfile
+++ /dev/null
@@ -1,34 +0,0 @@
-FROM ubuntu:bionic as builder
-RUN apt-get update && \
-    apt-get install -y software-properties-common && \
-    add-apt-repository -sy ppa:kernsuite/kern-5 && \
-    apt-add-repository -sy multiverse && \
-    apt-add-repository -sy restricted && \
-    apt-get update
-
-ARG CASACORE_VERSION=v3.0.0
-
-RUN apt-get update && apt-get -y install \
-   python3-casacore cmake build-essential python3-dev python3-scipy python3-h5py python3-astropy \
-   python3-emcee
-
-COPY ./ /root/src
-RUN mkdir -p /root/src/build/gnucxx11_debug
-WORKDIR /root/src/build/gnucxx11_debug
-RUN cmake ../../ -DUSE_LOG4CPLUS=OFF -DBUILD_PACKAGES=CAL -DCMAKE_INSTALL_PREFIX=/opt/lofar
-RUN make install
-
-FROM ubuntu:bionic
-
-RUN apt-get update && \
-    apt-get install -y software-properties-common && \
-    add-apt-repository -sy ppa:kernsuite/kern-5 && \
-    apt-add-repository -sy multiverse && \
-    apt-add-repository -sy restricted && \
-    apt-get update && \
-    apt-get update &&  \
-    apt-get -y install python3-casacore python3-scipy python3-h5py python3-astropy  && \
-    rm -rf /var/lib/apt/lists/*
-
-COPY --from=builder /opt/lofar /opt/lofar
-WORKDIR /root
\ No newline at end of file
diff --git a/CAL/Docker/HolographyBase/Dockerfile b/CAL/Docker/HolographyBase/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..2557c6f63adf5b3006b302e364f9b4aed5aba5e2
--- /dev/null
+++ b/CAL/Docker/HolographyBase/Dockerfile
@@ -0,0 +1,18 @@
+FROM ubuntu:bionic
+RUN apt-get update && \
+    apt-get install -y software-properties-common && \
+    add-apt-repository -sy ppa:kernsuite/kern-5 && \
+    apt-add-repository -sy multiverse && \
+    apt-add-repository -sy restricted && \
+    apt-get update && \
+    apt install -y python3-casacore
+
+ARG CASACORE_VERSION=v3.0.0
+
+RUN apt-get update && apt-get -y install \
+   python3-astropy \
+   python3-casacore \
+   python3-scipy \
+   python3-h5py  \
+   python3-emcee \
+   python3-numba
\ No newline at end of file
diff --git a/CAL/Docker/.dockerignore b/CAL/Docker/HolographyBuild/Dockerfile
similarity index 100%
rename from CAL/Docker/.dockerignore
rename to CAL/Docker/HolographyBuild/Dockerfile