[P] Add general smoke test and Store incremental test
Some checks failed
Component testing / Hub testing (push) Successful in 22s
Component testing / Integration smoke testing (push) Has been cancelled
Component testing / Store testing (push) Has been cancelled

This commit is contained in:
2026-03-23 17:03:17 +02:00
parent 60a846d8b8
commit 7fa14a14dc
5 changed files with 113 additions and 8 deletions

13
store/Dockerfile-test Normal file
View File

@@ -0,0 +1,13 @@
# Use the official Python image as the base image
FROM python:latest
# Set the working directory inside the container
WORKDIR /app
# Copy the requirements.txt file and install dependencies
COPY store/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the entire application into the container
COPY store/. .
# Run the main.py script inside the container when it starts
#CMD ["uvicorn", "main:app", "--host", "0.0.0.0"]
CMD ["./test-entry.sh"]