/
githubmirror
/
gpt-engineer
Обзор
Документация
Войти
/
githubmirror
/
gpt-engineer
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docker/entrypoint.sh
10 строк
352 B
Plamen Ivanov
feat(Dockerfile): switch from alpine to slim base image and add git to installed packages
29 май 2024, 19:49
29 май 2024, 19:49
0f9d39c
Код
Авторство
О чём код?
#!/usr/bin/env bash # -*- coding: utf-8 -*- project_dir="/project" # Run the gpt engineer script gpt-engineer $project_dir "$@" # Patch the permissions of the generated files to be owned by nobody except prompt file find "$project_dir" -mindepth 1 -maxdepth 1 ! -path "$project_dir/prompt" -exec chown -R nobody:nogroup {} + -exec chmod -R 777 {} +