From 2954253b3cb2098b11b24916a9e578dfccb669c9 Mon Sep 17 00:00:00 2001 From: Shihaam Abdul Rahman Date: Thu, 2 Jan 2025 19:31:39 +0500 Subject: [PATCH] reduce built size --- Dockerfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 05189ce..97ea576 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,5 @@ -# Use Python slim image FROM python:3.10-slim -# Install build dependencies -RUN apt-get update \ - && apt-get install -y gcc clang libdbus-1-dev meson \ - && rm -rf /var/lib/apt/lists/* # Clean up - # Set the working directory WORKDIR /app