README.md: add installation instructions

This commit is contained in:
oni@bor 2026-01-05 01:22:26 +01:00
parent 33820249e5
commit 95aa3b2409
3 changed files with 8 additions and 9 deletions

View File

@ -2,12 +2,10 @@ FROM python:3.12-slim
WORKDIR /app
COPY main.py /app/main.py
COPY app.py /app/app.py
RUN pip install flask
EXPOSE 5000
CMD [ "python3", "main.py" ]
CMD [ "python3", "app.py" ]

View File

@ -3,9 +3,10 @@
Fastionary is an alternative front-end for wiktionary data.
# Dependencies
- python3
- flask
- `git`
- `docker` or `podman`
or
- docker/podman
# Installation
```bash
git clone https://git.wlankabel.at/onipa/fastionary.git
```

View File