/
githubmirror
/
BabyCommandAGI
Обзор
Документация
Войти
/
githubmirror
/
BabyCommandAGI
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v2.0.2
Dockerfile
17 строк
451 B
saten-private
Fixed container build failure.
28 июн 2023, 20:59
28 июн 2023, 20:59
a9018b8
Код
Авторство
О чём код?
FROM python:3.11-slim ENV PIP_NO_CACHE_DIR=true WORKDIR /tmp RUN apt-get update && apt-get install build-essential -y # Correction of the following errors # https://github.com/oobabooga/text-generation-webui/issues/1534#issuecomment-1555024722 RUN apt-get install gcc-11 g++-11 -y COPY requirements.txt /tmp/requirements.txt RUN CXX=g++-11 CC=gcc-11 pip install -r requirements.txt WORKDIR /app COPY . /app ENTRYPOINT ["./babyagi.py"] EXPOSE 8080