mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2024-11-07 18:40:13 +03:00
Added Docker Support
This commit is contained in:
parent
b51595d303
commit
a20eb82511
21
Dockerfile
Normal file
21
Dockerfile
Normal file
@ -0,0 +1,21 @@
|
||||
# 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 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 a port if the project has any web-based features
|
||||
EXPOSE 8080
|
||||
|
||||
# Set an entry point that runs a shell for interactive mode
|
||||
ENTRYPOINT ["/bin/bash"]
|
@ -65,4 +65,4 @@ if __name__ == "__main__":
|
||||
args = parser.parse_args()
|
||||
port.append(args.port)
|
||||
print(f"Please visit http://127.0.0.1:{port[-1]}/ for the front-end display page. \nIn the event of a port conflict, please modify the port argument (e.g., python3 app.py --port 8012).")
|
||||
app.run(debug=False, port=port[-1])
|
||||
app.run(host='0.0.0.0', debug=False, port=port[-1])
|
||||
|
Loading…
Reference in New Issue
Block a user