diff options
author | 2024-07-07 03:07:28 +0100 | |
---|---|---|
committer | 2024-07-08 15:00:10 +0100 | |
commit | 3ff96840b80f397f34cff91ee4657f70fd089c10 (patch) | |
tree | 63c65f3a99892e432f51913c4b739fe96a2b9fea | |
parent | Apply fixable lint settings with Ruff (diff) |
Remove gcc from Dockerfile
-rw-r--r-- | Dockerfile | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -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 ./ |