From ffc60bb917bdf6a89a5ac899bf90380f527edb55 Mon Sep 17 00:00:00 2001 From: akou Date: Fri, 26 Apr 2024 17:19:49 +0800 Subject: [PATCH] add the comment in entrypoint.sh (#3882) --- web/docker/entrypoint.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/web/docker/entrypoint.sh b/web/docker/entrypoint.sh index 4f8a977cf6..9c30bce748 100755 --- a/web/docker/entrypoint.sh +++ b/web/docker/entrypoint.sh @@ -1,5 +1,15 @@ #!/bin/bash + + +# if you are using windows, you may need to convert the file to unix format +# you can use the Ubuntu terminal to convert this file to unix format +# otherwise, you may get the error after running the docker container + +# sudo apt-get install dos2unix +# dos2unix entrypoint.sh + + set -e export NEXT_PUBLIC_DEPLOY_ENV=${DEPLOY_ENV}