Commit 33c10d59 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Add Python extensions build dependencies to the image

parent 055430e1
Loading
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -18,4 +18,8 @@ FROM python:3.8-slim

ARG VERSION
RUN pip install pre-commit${VERSION+==$VERSION}
RUN apt update && apt install -y --no-install-recommends git
RUN apt-get update \
 && apt-get install -y --no-install-recommends \
    build-essential \
    git \
    python3-dev \