From 6c877ad04fd34234207ff5804f2ea87b5d101c91 Mon Sep 17 00:00:00 2001 From: Joe Stephenson Date: Thu, 19 Jan 2023 12:32:23 +0000 Subject: [PATCH] fix symlink and dockerfile entrypoint --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ae0aaab5..1fd2cc82 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,5 +9,5 @@ RUN SEMANTIC_VERSION=$semantic_version make build RUN mkdir -p /root/.cache/storageos # The storageos binary must be in the PATH for the examples in the docs to work. -RUN ln -s bin/storageos /usr/local/bin/storageos -ENTRYPOINT ["/storageos"] +RUN ln -s /go/src/github.com/storageos/go-cli/bin/storageos /usr/local/bin/storageos +ENTRYPOINT ["storageos"]