Added Docker Support

This commit is contained in:
Manindra de Mel 2023-10-21 23:45:25 +11:00
parent b51595d303
commit a20eb82511
2 changed files with 22 additions and 1 deletions

21
Dockerfile Normal file
View 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"]

View File

@ -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])