#!/bin/sh
ENTRY_POINT="./build/archie"
ls;
chmod 777 $ENTRY_POINT;
$ENTRY_POINT;
cd build;
ls;
这是 dockerfile 的 entrypoint 的一个 shell 在执行到 $ENTRY_POINT 的时候报 not found,疑惑,所以下面写了 cd build,然后 ls 了一下
output
archie_1 | /docker/scripts/entrypoint.sh: line 8: ./build/archie: not found
archie_1 | archie
发现它在里面!!! 是为啥!反正我始终是执行不了 archie 服务器是 CentOS 的
