Skip to content

Commit 67aa84b

Browse files
authored
Fix docker RUN instructions so that images build, resolves #169 (#170)
* Fix docker RUN instruction resolves #169 * Fix docker RUN instruction resolves #169
1 parent c51bab1 commit 67aa84b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.docker/Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ COPY --from=build /usr/src/node-red/prod_node_modules ./node_modules
7373
# Chown, install devtools & Clean up
7474
RUN chown -R node-red:node-red /usr/src/node-red && \
7575
/tmp/install_devtools.sh && \
76-
rm /tmp/* && \
76+
rm -r /tmp/* && \
7777
rm /usr/bin/qemu-$QEMU_ARCH-static
7878

7979
USER node-red

docker-custom/Dockerfile.custom

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ COPY --from=build /usr/src/node-red/prod_node_modules ./node_modules
6767
# Chown, install devtools & Clean up
6868
RUN chown -R node-red:node-red /usr/src/node-red && \
6969
/tmp/install_devtools.sh && \
70-
rm /tmp/*
70+
rm -r /tmp/*
7171

7272
USER node-red
7373

0 commit comments

Comments
 (0)