You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After that, I have started the deployment using docker compose up -d command. All of the services have successfully started except the client, which failed with error code 1:
> docker compose logs client
client | Traceback (most recent call last):
client | File "firecrest_demo.py", line 17, in<module>
client | from flask_oidc import OpenIDConnect
client | File "/usr/local/lib/python3.7/site-packages/flask_oidc/__init__.py", line 41, in<module>
client | from itsdangerous import JSONWebSignatureSerializer, BadSignature, \
client | ImportError: cannot import name 'JSONWebSignatureSerializer' from 'itsdangerous' (/usr/local/lib/python3.7/site-packages/itsdangerous/__init__.py)
Do you have any idea how to fix this issue?
Thank you in advance!
The text was updated successfully, but these errors were encountered:
Dear ETH CSCS Team,
I have attempted to run a demo deployment of FirecREST. Firstly, I got an error during the building of Docker images:
This has been simply solved by the following command:
docker build -f deploy/docker/base/Dockerfile . -t f7t-base
After that, I have started the deployment using
docker compose up -d
command. All of the services have successfully started except theclient
, which failed with error code 1:Do you have any idea how to fix this issue?
Thank you in advance!
The text was updated successfully, but these errors were encountered: