Files
ALwrity/Dockerfile
Cristover Wurangian 408c42ef18 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)
2024-09-12 23:01:59 +05:30

14 lines
156 B
Docker

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