aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-07-07 03:07:28 +0100
committerGravatar Joe Banks <[email protected]>2024-07-08 15:00:10 +0100
commit3ff96840b80f397f34cff91ee4657f70fd089c10 (patch)
tree63c65f3a99892e432f51913c4b739fe96a2b9fea
parentApply fixable lint settings with Ruff (diff)
Remove gcc from 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 ./