Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
flambert70 committed Dec 8, 2023
1 parent 4a82e3f commit ed0a543
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
9 changes: 7 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
########################################################################################################################

FROM node/21-alpine
FROM node:21-alpine

########################################################################################################################

Expand All @@ -12,13 +12,19 @@ LABEL description="AMI Pipeline"

########################################################################################################################

RUN ["apk", "add", "--update", "--no-cache", "git"]

########################################################################################################################

COPY package.json /AMIPipeline/package.json
COPY ami-pipeline.js /AMIPipeline/ami-pipeline.js

########################################################################################################################

COPY docker-entrypoint.sh /docker-entrypoint.sh

RUN ["chmod", "a+x", "/docker-entrypoint.sh"]

########################################################################################################################

EXPOSE 1880
Expand All @@ -36,4 +42,3 @@ WORKDIR /AMIPipeline/
ENTRYPOINT ["/docker-entrypoint.sh"]

########################################################################################################################

2 changes: 2 additions & 0 deletions ami-pipeline.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ const NODE_RED_SETTINGS = {
httpNodeRoot: '/api',
httpAdminRoot: '/',
userDir: path.join(DIR_PATH, 'data', 'node-red'),
flowFile: 'flows.json',
flowFilePretty: true,
editorTheme: {
page: {
css: path.join(DIR_PATH, 'node_modules', 'node-red-contrib-ami', 'style', 'ami.css'),
Expand Down
6 changes: 5 additions & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#!/bin/bash
#!/bin/sh

########################################################################################################################

mkdir -p /AMIPipeline/data/node-red/

########################################################################################################################

Expand Down

0 comments on commit ed0a543

Please sign in to comment.