MedAI-LLM / Dockerfile
Deepak Perla
Added app.py and Dockerfile
9684b82
raw
history blame contribute delete
204 Bytes
FROM python:3.10
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install -r requirements.txt
# Copy app files
COPY . .
# Expose port & run app
EXPOSE 7860
CMD ["python", "app.py"]