Files
ALwrity/docker-compose.yml
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

12 lines
220 B
YAML

version: '3.8'
services:
app:
image: python:3.12
working_dir: /app
volumes:
- .:/app
command: bash -c "pip install -r requirements.txt && streamlit run alwrity.py"
ports:
- "8501:8501"