build: start using build-essential
diff --git a/Dockerfile b/Dockerfile
index d4a9434..7c2ffd3 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,7 +8,7 @@
 FROM poetry AS builder
 RUN <<EOF
   apt-get update
-  apt-get install -y gcc make
+  apt-get install -y build-essential
 EOF
 WORKDIR /app
 ADD poetry.lock /app