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 ./ ./