From cb8160529f2364fdf75f5efa813036b3ae8778c0 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Wed, 7 Jun 2023 13:37:00 +0800 Subject: [PATCH] fix dockerfile --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 1af0c33f..cf7be3fc 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -49,4 +49,4 @@ RUN python3 -m pip install -r requirements.txt \ && echo 'fs.inotify.max_user_instances=5242880' >> /etc/sysctl.conf EXPOSE 3001 VOLUME ["/config"] -ENTRYPOINT [ "python", "app/main.py" ] +ENTRYPOINT [ "python3", "app/main.py" ]