aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile5
1 files changed, 0 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile
index e1cb1c2..6606302 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -3,11 +3,6 @@ FROM --platform=linux/amd64 ghcr.io/owl-corp/python-poetry-base:3.12-slim
# Allow service to handle stops gracefully
STOPSIGNAL SIGQUIT
-# Install C compiler and make
-RUN apt-get update && \
- apt-get install -y gcc make && \
- apt-get clean && rm -rf /var/lib/apt/lists/*
-
# Install dependencies
WORKDIR /app
COPY pyproject.toml poetry.lock ./