[P] Add CI for updated Hub component part
Some checks failed
Hub component testing / hub-test (push) Failing after 33s

This commit is contained in:
2026-03-23 15:19:19 +02:00
parent 30f81ec1ae
commit 087e6fd8b9
5 changed files with 81 additions and 1 deletions

12
hub/Dockerfile-test Normal file
View File

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