Skip to content

Commit 0aff77a

Browse files
authored
Fix path to known_hosts.sh for custom builds (#264)
* 1.3.6 release and test GH Action build * Add right version to custom package.json * Typo in GH Action * Fix path to known_hosts script * Allow push for tagged releases * Remove spurius chars
1 parent 047e97b commit 0aff77a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker-custom/Dockerfile.custom

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN set -ex && \
3232
WORKDIR /usr/src/node-red
3333

3434
# Setup SSH known_hosts file
35-
COPY .docker/known_hosts.sh .
35+
COPY known_hosts.sh .
3636
RUN ./known_hosts.sh /etc/ssh/ssh_known_hosts && rm /usr/src/node-red/known_hosts.sh
3737

3838
# package.json contains Node-RED NPM module and node dependencies

docker-custom/Dockerfile.debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ RUN set -ex && \
3333
WORKDIR /usr/src/node-red
3434

3535
# Setup SSH known_hosts file
36-
COPY .docker/known_hosts.sh .
36+
COPY known_hosts.sh .
3737
RUN ./known_hosts.sh /etc/ssh/ssh_known_hosts && rm /usr/src/node-red/known_hosts.sh
3838

3939
# package.json contains Node-RED NPM module and node dependencies

0 commit comments

Comments
 (0)