From 77ab4cbbe47d578cdbb2274925d94eed653ade74 Mon Sep 17 00:00:00 2001
From: Leah Tacke genannt Unterberg <leah.tgu@pads.rwth-aachen.de>
Date: Thu, 10 Apr 2025 14:27:32 +0200
Subject: [PATCH] migrated Dockerfile to uv

---
 Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 5af1cfa..bb8c92b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,11 +2,11 @@ FROM python:3.12 AS requirements-stage
 
 WORKDIR /tmp
 
-RUN pip install poetry=="2.0"
+RUN pip install uv
 
 COPY ./pyproject.toml /tmp/
 
-RUN poetry self add poetry-plugin-export && poetry lock && poetry export -f requirements.txt --output requirements.txt --without-hashes
+RUN uv lock && uv export --no-hashes > requirements.txt
 
 FROM python:3.12
 # RUN apt-get update && apt-get install -y graphviz graphviz-dev
-- 
GitLab