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
28
28
ARG USER_UID=1000
29
29
ARG USER_GID=$USER_UID
30
30
COPY 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" \
32
33
&& rm -f /tmp/setup.sh
33
34
# ################################################################################################
34
35
FROM base as perf-builder
@@ -72,7 +73,7 @@ COPY scripts/.CodeCheckerIgnore scripts/utils.cmake /opt/cmake-utils/
72
73
73
74
# Setup profiling script
74
75
COPY 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
76
77
77
78
# Cleanup
78
79
RUN export DEBIAN_FRONTEND=noninteractive && apt autoremove -y
You can’t perform that action at this time.
0 commit comments