/
githubmirror
/
ChatDev
Обзор
Документация
Войти
/
githubmirror
/
ChatDev
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.1.2
Dockerfile
24 строки
687 B
thinkwee
change online_log -> visualizer
18 дек 2023, 09:36
18 дек 2023, 09:36
6ff2e8f
Код
Авторство
О чём код?
# Start with a Python 3.9 base image FROM python:3.9-slim # Set the working directory in the container WORKDIR /app # Copy the current directory contents into the container at /app COPY . /app # Install necessary libraries for GUI support RUN apt-get update && apt-get install -y python3-tk x11-apps # Install the project dependencies RUN pip install --no-cache-dir -r requirements.txt # Set the environment variable for OpenAI API key # (you'll need to provide the actual key when running the container) ENV OPENAI_API_KEY=your_OpenAI_API_key # Expose the port for visualizer/app.py EXPOSE 8000 # Set an entry point that runs a shell for interactive mode ENTRYPOINT ["/bin/bash"]