mujahidniaz commented on issue #10087:
URL: https://github.com/apache/superset/issues/10087#issuecomment-919127574
@himanshumps I resolved it by running the following commands in Docker file
using superset user not with the root.
```
USER root
USER superset
RUN cd /app
RUN superset fab create-admin \
--username admin \
--firstname Superset \
--lastname Admin \
--email [email protected] \
--password admin
# Switching back to using the `superset` user
RUN superset db upgrade
RUN superset init
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]