File size: 702 Bytes
003db7d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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/gefiwek187/free-api/resolve/main/app.py -O /app/api.py
RUN pip install duckduckgo_search

# 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"]