This PR introduces changes to the Docker configuration and Python dependencies.
Dockerfile Changes:
Add make to apt-get installation in Dockerfile
Adjust Docker COPY command
Update QUEUE_HOST environment variable
Include command to run Flask server at container start
Requirements Updates:
Add the blinker package, essential for signaling support in Flask
Removed explicit versioning for PyNaCl and pytest packages, allowing pip to decide the best version. This was done to resolve potential version conflicts.
Testing Steps:
After pulling these changes:
Rebuild the Docker images using:
docker-compose build
Launch the application with:
docker-compose up
Verify that the Flask application starts without any import errors and that it binds to the correct interface and port.
This PR introduces changes to the Docker configuration and Python dependencies.
Dockerfile Changes:
make
to apt-get installation in DockerfileQUEUE_HOST
environment variableRequirements Updates:
blinker
package, essential for signaling support in FlaskPyNaCl
andpytest
packages, allowing pip to decide the best version. This was done to resolve potential version conflicts.Testing Steps:
After pulling these changes: