File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,9 @@ FROM ghcr.io/labring-actions/devbox/node.js-20:219d11
2
2
3
3
USER root
4
4
RUN cd /home/devbox/project && \
5
- rm -rf ./*
5
+ rm -rf ./* && \
6
+ mkdir -p /usr/lib/node_modules && \
7
+ chown -R devbox:devbox /usr/lib/node_modules
6
8
7
9
COPY /Framework/angular/v18/project /home/devbox/project
8
10
RUN chown -R devbox:devbox /home/devbox/project && \
Original file line number Diff line number Diff line change 1
1
FROM ghcr.io/labring-actions/devbox/node.js-22:219d11
2
2
USER root
3
3
RUN cd /home/devbox/project && \
4
- rm -rf ./*
4
+ rm -rf ./* && \
5
+ rm -rf ./* && \
6
+ mkdir -p /usr/lib/node_modules && \
7
+ chown -R devbox:devbox /usr/lib/node_modules
5
8
6
9
COPY /Framework/react/18.2.0/project /home/devbox/project
7
10
RUN chown -R devbox:devbox /home/devbox/project && \
You can’t perform that action at this time.
0 commit comments