/
githubmirror
/
mini-agi
Обзор
Документация
Войти
/
githubmirror
/
mini-agi
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Dockerfile
16 строк
388 B
bythefire
Documentation and Dockerfile
05 май 2023, 00:38
05 май 2023, 00:38
d81b214
Код
Авторство
О чём код?
# Use the official Python base image FROM python:3.10 # Copy requirements.txt into the container COPY requirements.txt . # Install the Python dependencies RUN pip install --no-cache-dir -r requirements.txt # Copy script to copy env from shared folder during startup COPY env.sh . # Copy the rest of the application code COPY *.py . # Run the application CMD ["echo", "use ./run.sh"]