Files
IoT-Systems/store/Dockerfile-test
hasslesstech 7fa14a14dc
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
[P] Add general smoke test and Store incremental test
2026-03-23 17:05:38 +02:00

14 lines
470 B
Plaintext

# 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"]