Selaa lähdekoodia

delete the requirement of build-essential

chenhaiyang 1 vuosi sitten
vanhempi
commit
52fbb6dbd6
1 muutettua tiedostoa jossa 1 lisäystä ja 3 poistoa
  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