From 95aa3b2409dc29ccaaa1fa6775546ee03370acd1 Mon Sep 17 00:00:00 2001 From: "oni@bor" Date: Mon, 5 Jan 2026 01:22:26 +0100 Subject: [PATCH] README.md: add installation instructions --- Dockerfile | 6 ++---- README.md | 11 ++++++----- main.py => app.py | 0 3 files changed, 8 insertions(+), 9 deletions(-) rename main.py => app.py (100%) diff --git a/Dockerfile b/Dockerfile index 468908d..b5fe72c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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" ] diff --git a/README.md b/README.md index 7c68a8f..ac215df 100644 --- a/README.md +++ b/README.md @@ -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 +``` diff --git a/main.py b/app.py similarity index 100% rename from main.py rename to app.py