We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f73c9af commit dd27388Copy full SHA for dd27388
1 file changed
Dockerfile
@@ -6,7 +6,8 @@ RUN apt-get update && \
6
curl -fsSLo sdm.zip $(curl https://app.strongdm.com/releases/upgrade\?os\=linux\&arch\=$(uname -m | sed -e 's:x86_64:amd64:' -e 's:aarch64:arm64:')\&software\=sdm-cli\&version\=productionexample | jq ".url" -r) && \
7
unzip sdm.zip && \
8
rm sdm.zip && \
9
- chmod g+rx sdm && \
+ chmod g+rwx sdm && \
10
+ chmod g+w /usr/local/bin && \
11
apt-get remove -y --purge curl zip jq
12
# Setup non-root user
13
ENV HOME=/home/sdmuser \
0 commit comments