diff options
author | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-05-04 13:34:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-04 13:34:16 +0200 |
commit | 88d94fbee8d3c6a486c6b0fa8d3918757e9964b9 (patch) | |
tree | e58af01438dea5fea53e2519b991d8baef6f4417 | |
parent | Merge pull request #408 from ZachKLYeh/main (diff) | |
parent | Fix numpy c dependency issue (diff) | |
download | gpt4free-88d94fbee8d3c6a486c6b0fa8d3918757e9964b9.tar gpt4free-88d94fbee8d3c6a486c6b0fa8d3918757e9964b9.tar.gz gpt4free-88d94fbee8d3c6a486c6b0fa8d3918757e9964b9.tar.bz2 gpt4free-88d94fbee8d3c6a486c6b0fa8d3918757e9964b9.tar.lz gpt4free-88d94fbee8d3c6a486c6b0fa8d3918757e9964b9.tar.xz gpt4free-88d94fbee8d3c6a486c6b0fa8d3918757e9964b9.tar.zst gpt4free-88d94fbee8d3c6a486c6b0fa8d3918757e9964b9.zip |
Diffstat (limited to '')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" |