From d90434c2404af67861a313eed122343d08ddd66d Mon Sep 17 00:00:00 2001 From: Isaac Abadi Date: Sun, 7 May 2023 00:24:47 -0400 Subject: [PATCH] Added python3.8-dev/build-essential to dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b8a53de..856b58d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -53,7 +53,7 @@ FROM base as python WORKDIR /app COPY docker-utils/GetTwitchDownloader.py . RUN apt update && \ - apt install -y --no-install-recommends python3-minimal python-is-python3 python3-pip && \ + apt install -y --no-install-recommends python3-minimal python-is-python3 python3-pip python3.8-dev build-essential && \ apt clean && \ rm -rf /var/lib/apt/lists/* RUN pip install PyGithub requests