Use pyproject.toml instead of requirements.txt and fix some broken tests.

This commit is contained in:
Hemang
2025-04-17 07:15:28 +02:00
committed by Hemang Sarkar
parent 6b6f33bde6
commit 5bf121bbda
23 changed files with 99 additions and 81 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM python:3.12
WORKDIR /srv/gateway
COPY pyproject.toml ./
COPY gateway/ ./
COPY README.md /srv/gateway/README.md
RUN pip install --no-cache-dir .
RUN chmod +x /srv/gateway/run.sh
# Run the application
CMD ["./run.sh"]