Jupyter notebook 使用jupyterhub tmpauthenticator时出现问题

Jupyter notebook 使用jupyterhub tmpauthenticator时出现问题,jupyter-notebook,dockerfile,jupyterhub,Jupyter Notebook,Dockerfile,Jupyterhub,在docker上尝试使用此验证器时出现以下错误 500 : Internal Server Error Error in Authenticator.pre_spawn_start: FileNotFoundError [Errno 2] No such file or directory: 'systemctl' You can try restarting your server from the home page. Dockerfile FROM jupyter/minimal-n

在docker上尝试使用此验证器时出现以下错误

500 : Internal Server Error

Error in Authenticator.pre_spawn_start: FileNotFoundError [Errno 2] No such file or directory: 'systemctl'

You can try restarting your server from the home page.
Dockerfile

FROM jupyter/minimal-notebook:latest
RUN pip install notebook jupyterhub-tmpauthenticator jupyterhub-systemdspawner
COPY jupyterhub_config.py  /home/jovyan/jupyterhub_config.py
jupyterhub_config.py

导入tmpauthenticator
导入系统Pawner
c=获取配置()
c、 JupyterHub.authenticator_class=tmpauthenticator.tmpauthenticator
c、 JupyterHub.spawner_class=systemdspawner.systemdspawner
c、 SystemdSpawner.dynamic_users=True

如果我得到一个符合上述要求的工作文件或图像,那就好了。在过去的一周里,我一直在努力解决这个问题