From 20031c583a497275bcb9c0b24e35e6292cd639dc Mon Sep 17 00:00:00 2001 From: Manu Seth Date: Tue, 23 Feb 2021 22:13:38 +0000 Subject: [PATCH] remove python3-dev --- cd/python/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cd/python/docker/Dockerfile b/cd/python/docker/Dockerfile index 880dbe61e5b0..f82f3f538220 100644 --- a/cd/python/docker/Dockerfile +++ b/cd/python/docker/Dockerfile @@ -27,7 +27,7 @@ ARG PYTHON=python3 ARG PIP=pip3 ARG PYTHON_VERSION=3.7.9 RUN apt-get update && \ - apt-get install -y wget ${PYTHON}-dev gcc && \ + apt-get install -y wget gcc && \ wget -q https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tgz && \ tar -xzf Python-$PYTHON_VERSION.tgz && \ cd Python-$PYTHON_VERSION && \