move dockerfiles to docker folder

This commit is contained in:
2025-11-08 14:02:06 -06:00
parent 9e435eeebc
commit 7c93fdb71d
4 changed files with 0 additions and 0 deletions

View File

@@ -1,14 +0,0 @@
FROM python:3.10-slim
RUN apt-get update && apt-get install -y build-essential libssl-dev && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir .
WORKDIR /app/tests
RUN chmod +x run_tests.sh
CMD ["bash", "run_tests.sh"]