CleverSwarm API invocation example

This commit is contained in:
Stanislav Hejny
2025-02-25 20:35:20 +00:00
parent 286a4986b3
commit eb26eec767
36 changed files with 1269 additions and 126 deletions
-7
View File
@@ -11,17 +11,10 @@ COPY ./requirements.txt .
# Install the Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
run pip install "fastapi[standard]"
# Copy the application code into the container
COPY ./.env_secrets .
COPY ./amqp ./amqp
COPY ./container-data ./container-data
# Expose the port that the FastAPI app will run on
EXPOSE 8080
# Set the command to run the FastAPI app
CMD ["python", "amqp/service/amq_service.py"]
#CMD ["fastapi", "run", "amqp/service/amq_service.py", "--host", "0.0.0.0", "--port", "8080"]
#CMD ["sleep", "300"]