diff --git a/Dockerfile b/Dockerfile
index 54f7ffc71a6a263d615d640f96cab2bac340979c..9d3a47d6651954af5d12dfdb0c440dcb665bfb59 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,10 +1,12 @@
-FROM archlinux/base
+FROM ubuntu:20.04
 
 MAINTAINER root@recolic.net
 
-RUN pacman -Sy
-RUN pacman -S --noconfirm curl netcat iputils grep
-RUN pacman -S --noconfirm python
+RUN apt update
+RUN apt install -y curl netcat iputils-ping python3.8
+# RUN pacman -Sy
+# RUN pacman -S --noconfirm curl netcat iputils grep
+# RUN pacman -S --noconfirm python
 
 RUN mkdir /app
 COPY . /app