From 1853ec5e3e5ad5625768767c47d16b75956eaf79 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 14 Apr 2021 19:07:08 -0400 Subject: [PATCH] Update Dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 14c0d75..122a539 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,9 @@ FROM python:3.9-slim-buster LABEL maintainer="Tonye Jack " -RUN apk update && apk add bash && \ - pip3 install --no-cache --upgrade pip setuptools wheel +RUN apt-get update \ + && apt-get install -y build-essential \ + && pip3 install --no-cache --upgrade pip setuptools wheel COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh