aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorkj_sh6042026-02-16 02:02:46 -0500
committerkj_sh6042026-02-16 02:02:46 -0500
commitf6e6db9d0360675c6153c0f671772e2c5fc7093f (patch)
tree9ec6c33563731baac1baeaea17495d32c4cfca49 /README.md
parenteb84775cf931a92fc26f5e7d66c74ac1521ca30b (diff)
feat: docker 🚢
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 12 insertions, 1 deletions
diff --git a/README.md b/README.md
index 1bf6ab6..bcf0e83 100644
--- a/README.md
+++ b/README.md
@@ -23,10 +23,21 @@ a simple web app that converts markdown to pdf using pandoc and lualatex.
## run
+### local
+
```bash
cd src/
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python app.py
-``` \ No newline at end of file
+```
+
+### docker
+
+```bash
+docker build -t likha-pdf .
+docker run -p 5000:5000 likha-pdf
+```
+
+open `http://localhost:5000` \ No newline at end of file