trying to build my custom docker image using the c...
# box-products
d
trying to build my custom docker image using the commandbox base dockerfile and the shell scripts are not found on the image system:
Copy code
=> ERROR [13/18] RUN /usr/lib/build/util/alpine/install-dependencies.sh                     0.6s
------
 > [13/18] RUN /usr/lib/build/util/alpine/install-dependencies.sh:
#17 0.607 /bin/sh: /usr/lib/build/util/alpine/install-dependencies.sh: not found
------
executor failed running [/bin/sh -c $BUILD_DIR/util/alpine/install-dependencies.sh]: exit code: 127
perhaps the
COPY ./build/ ${BUILD_DIR}/
is not actually copying the file to the system?
this is my app folder structure:
Copy code
/src
/build
  /util
    /alpine
      install-dependencies.sh
      ...
    ...
/Dockerfile
and I'm running this build command
docker build -t commandbox:lucee .