README.md: add installation instructions
This commit is contained in:
parent
33820249e5
commit
95aa3b2409
@ -2,12 +2,10 @@ FROM python:3.12-slim
|
|||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY main.py /app/main.py
|
COPY app.py /app/app.py
|
||||||
|
|
||||||
RUN pip install flask
|
RUN pip install flask
|
||||||
|
|
||||||
EXPOSE 5000
|
EXPOSE 5000
|
||||||
|
|
||||||
CMD [ "python3", "main.py" ]
|
CMD [ "python3", "app.py" ]
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
11
README.md
11
README.md
@ -3,9 +3,10 @@
|
|||||||
Fastionary is an alternative front-end for wiktionary data.
|
Fastionary is an alternative front-end for wiktionary data.
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
- python3
|
- `git`
|
||||||
- flask
|
- `docker` or `podman`
|
||||||
|
|
||||||
or
|
# Installation
|
||||||
|
```bash
|
||||||
- docker/podman
|
git clone https://git.wlankabel.at/onipa/fastionary.git
|
||||||
|
```
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user