Files
ALwrity/lib/workspace/docker-compose.yml

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"