I was able to build the following docker image on AWS:
https://github.com/orthanc-server/orthanc-builder/blob/master/docker/orthanc/Dockerfile#L271
after commenting out:
#####–FROM osimis/orthanc-builder-base:vcpkg-google-${BASE_IMAGE_TAG} as build-plugin-object-storage-google
#####–FROM osimis/orthanc-builder-base:vcpkg-azure-${BASE_IMAGE_TAG} as build-plugin-object-storage-azure
########################## Orthanc Indexer
########################## Orthanc Neuro
########################## Orthanc TCIA
########################## Orthanc azure storage plugins
########################## Orthanc Google storage plugins
########################## Orthanc Explorer 2
################################ the image that will run Orthanc dynamicaly linked (intermediate version without vcpkg builds)
ENV MALLOC_ARENA_MAX=5
#COPY docker-entrypoint.sh /
COPY *.json /startup/
#COPY generateConfiguration.py /startup/
#COPY helpers.py /startup/
#COPY configurator.py /startup/
COPY *.lua /lua-scripts/
#COPY test-aliveness.py /probes/
Unfortunately the image will not run without the the docker-entrypoint.sh that I commented out due to problem building/errors.
=> ERROR [orthanc-no-vcpkg 32/40] COPY docker-entrypoint.sh /
root@ip-10-0-0-22:/configs# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
orthanc-img latest e94280d954f0 11 minutes ago 1.62GB
3b390dfe5494 2 hours ago 2.28GB
594c174e3db7 2 hours ago 2.36GB
bd292670f7c9 2 hours ago 2.31GB
root@ip-10-0-0-22:/configs# docker run -t -p 8042:8042 -p 4242:4242 orthanc-img
docker: Error response from daemon: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: “/docker-entrypoint.sh”: stat /docker-entrypoint.sh: no such file or directory: unknown.
ERRO[0001] error waiting for container:
root@ip-10-0-0-22:/configs# find / -name docker-entrypoint.sh
root@ip-10-0-0-22:/configs#