File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ ARG USERNAME=vscode
2828ARG USER_UID=1000
2929ARG USER_GID=$USER_UID
3030COPY scripts/setup.sh /tmp
31- RUN /tmp/setup.sh "${INSTALL_ZSH}" "${USERNAME}" "${USER_UID}" "${USER_GID}" "true" \
31+ RUN chmod +x /tmp/setup.sh \
32+ && /tmp/setup.sh "${INSTALL_ZSH}" "${USERNAME}" "${USER_UID}" "${USER_GID}" "true" \
3233 && rm -f /tmp/setup.sh
3334# ################################################################################################
3435FROM base as perf-builder
@@ -72,7 +73,7 @@ COPY scripts/.CodeCheckerIgnore scripts/utils.cmake /opt/cmake-utils/
7273
7374# Setup profiling script
7475COPY scripts/cpu-profile.sh /opt
75- RUN ln -s /opt/cpu-profile.sh /usr/bin/cpu-profile
76+ RUN chmod +x /opt/cpu-profile.sh && ln -s /opt/cpu-profile.sh /usr/bin/cpu-profile
7677
7778# Cleanup
7879RUN export DEBIAN_FRONTEND=noninteractive && apt autoremove -y
You can’t perform that action at this time.
0 commit comments