Add Docker support and remove advetools from requirements.txt

* Removed advetools from requirements.txt due to compatibility issues (see https://github.com/AJaySi/AI-Writer/issues/124)
This commit is contained in:
Cristover Wurangian
2024-09-13 00:00:00 +07:00
committed by اجاي
parent ca8618a6a4
commit 408c42ef18
3 changed files with 64 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.12
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 8501
CMD ["streamlit", "run", "alwrity.py"]