From da2856237bf1c8b835d42baa3683bb152d5c59b5 Mon Sep 17 00:00:00 2001 From: Mehran Kholdi Date: Thu, 23 Apr 2020 18:56:32 +0430 Subject: [PATCH] Switch from alpine base to debian So that python requirements could be installed from wheels. --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 45b370e..20518b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,9 @@ -FROM python:3-alpine3.11 +FROM python:3 WORKDIR /app/ ENV PIP_NO_CACHE_DIR 1 ADD ./requirements.txt ./ -RUN apk add --no-cache gcc linux-headers make musl-dev python-dev g++ RUN pip install -r ./requirements.txt ADD ./ ./