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
-14
View File
@@ -1,14 +0,0 @@
FROM python:3.10
COPY ./requirements.txt /srv/gateway/requirements.txt
WORKDIR /srv/gateway
RUN pip install --no-cache-dir -r requirements.txt
COPY . /srv/gateway
# Ensure run.sh is executable
RUN chmod +x /srv/gateway/run.sh
WORKDIR /srv/gateway
# Run the application
CMD ["./run.sh"]