added Dockerfile

This commit is contained in:
2025-03-24 18:35:09 +01:00
parent 9ea24e3bb5
commit 1a10e6d778
2 changed files with 75 additions and 0 deletions

12
README.md Normal file
View File

@ -0,0 +1,12 @@
# Installation/Development via pip
1. create virtual environment: `python3 -m venv venv`
2. activate it: `. venv/bin/activate`
3. install Django: `pip install -r requirements.txt`
4. Initialize DB: `python3 manage.py migrate`
5. Run Django project: `python3 manage.py runserver`
# Docker/Podman
podman build -t isotables isotables
podman run -p 8000:8000 localhost/isotable:latest