From 74ea9751acb6d75e0f80fc37b84819a879aa63f9 Mon Sep 17 00:00:00 2001 From: Andreea Radoescu Date: Sun, 17 Nov 2024 19:32:43 +0100 Subject: change paths to flashcards repo to work in Docker, added Dockerfile that installs app and runs the UI - requires the flashcard data to be mounted from outside added docker-compose as a first draft --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1e4e089 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM python:3.12.7-bookworm +WORKDIR /app +COPY . . +RUN pip install -r requirements.txt +ENTRYPOINT ["python3", "gui-project/main.py"] -- cgit v1.2.3