AumCore-AI / Dockerfile
AumCoreAI
Fixed everything back to original
b52ad0f
raw
history blame contribute delete
117 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]