From 2ed8ddaf274be2c24f412fd59eabd8dceab3d944 Mon Sep 17 00:00:00 2001 From: kainstan Date: Thu, 4 May 2023 15:09:10 +0800 Subject: Fix numpy c dependency issue --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 45f111c6..297ebbbf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.11 as builder WORKDIR /usr/app ENV PATH="/usr/app/venv/bin:$PATH" -RUN apt-get update && apt-get install -y git +#RUN apt-get update && apt-get install -y git RUN mkdir -p /usr/app RUN python -m venv ./venv @@ -14,7 +14,7 @@ RUN pip install -r requirements.txt # RUN pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/ # RUN pip config set global.trusted-host mirrors.aliyun.com -FROM python:3.11-alpine +FROM python:3.11 WORKDIR /usr/app ENV PATH="/usr/app/venv/bin:$PATH" -- cgit v1.2.3