Jarvis-Brain / Dockerfile
Banu007's picture
Update Dockerfile
e692819 verified
raw
history blame contribute delete
176 Bytes
FROM python:3.9
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
# Start the Web Server on port 7860 (Standard for HF)
CMD ["python", "app.py"]