Spaces:
Sleeping
Sleeping
File size: 662 Bytes
5f639b9 b80face 5f639b9 4f40ff1 5f639b9 4f40ff1 5f639b9 4f40ff1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# Use an official Python runtime as a parent image
FROM python:3.9-slim
# Set the working directory in the container
WORKDIR /app
# Install necessary packages
RUN pip install --no-cache-dir flask requests duckduckgo_search openai
# Download the script from the private Hugging Face dataset
RUN apt-get update && apt-get install -y wget
RUN wget https://huggingface.co/datasets/qdqd/ddsg-api/resolve/main/api.py -O /app/api.py
# Make port 7860 available to the world outside this container
EXPOSE 7860
# Define environment variable for Flask
ENV FLASK_APP=api.py
# Run the Flask application on port 7860
CMD ["flask", "run", "--host=0.0.0.0", "--port=7860"] |