diff --git a/Dockerfile b/Dockerfile index ad7016abe393259101143b351c60363ab02ea47b..6e708cf2b828618bb67dd803564550e430ce24e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -82,7 +82,7 @@ RUN apk add --update --no-cache postgresql nodejs python3 py3-pip \ && su postgres -c "psql -c \"grant all privileges on database granef_visualization to granef;\"" \ && su postgres -c "psql -d granef_visualization -c \"GRANT ALL ON SCHEMA public TO granef;\"" \ && su postgres -c "pg_ctl stop -D /var/lib/postgresql/data" \ - && pip3 install --trusted-host pypi.python.org --no-cache-dir -r requirements.txt + && pip3 install --trusted-host pypi.python.org --no-cache-dir --break-system-packages -r requirements.txt # Run communication-handler.py with arguments when container launches (CMD if there are no arguments) ENTRYPOINT ["python3", "communication_handler.py"]