소스 검색

delete the requirement of build-essential

chenhaiyang 1 년 전
부모
커밋
52fbb6dbd6
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 3
      Dockerfile

+ 1 - 3
Dockerfile

@@ -6,9 +6,7 @@ COPY ./requirements.txt /code/requirements.txt
 COPY ./app /code/app
 COPY .env_pro /code/.env
 
-RUN apt-get update && apt-get install -y --no-install-recommends \
-    build-essential && \
-    pip install --no-cache-dir --upgrade -r /code/requirements.txt -i https://mirrors.aliyun.com/pypi/simple/ && \
+RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt -i https://mirrors.aliyun.com/pypi/simple/ && \
     mkdir -p /code/ml_models
 
 ENV PYTHONPATH=/code