Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions file-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM node:20-alpine
ARG TAG

RUN apk add --no-cache --virtual build-base g++ make py3-pip sqlite-dev python3
RUN npm install -g npm
# RUN npm config set python `which python3` --global

WORKDIR /usr/src/flowforge-file-server
Expand Down
1 change: 1 addition & 0 deletions flowforge-container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM node:20-alpine
ARG TAG

RUN apk add --no-cache --virtual build-base g++ make py3-pip sqlite-dev python3 git
RUN npm install -g npm
# RUN npm config set python `which python3` --global

WORKDIR /usr/src/forge
Expand Down
6 changes: 6 additions & 0 deletions node-red-container/Dockerfile-3.1
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ FROM nodered/node-red:3.1.15-18

ARG BUILD_TAG=latest

USER root
RUN npm install -g npm
RUN chown -R 1000:1000 "/data/.npm"

USER node-red

COPY healthcheck.js /healthcheck.js

COPY package.json /data
Expand Down
6 changes: 6 additions & 0 deletions node-red-container/Dockerfile-4.0
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ FROM nodered/node-red:4.0.9-20

ARG BUILD_TAG=latest

USER root
RUN npm install -g npm
RUN chown -R 1000:1000 "/data/.npm"

USER node-red

COPY healthcheck.js /healthcheck.js

COPY package.json /data
Expand Down
6 changes: 6 additions & 0 deletions node-red-container/Dockerfile-4.1
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ FROM nodered/node-red:4.1.7-22

ARG BUILD_TAG=latest

USER root
RUN npm install -g npm
RUN chown -R 1000:1000 "/data/.npm"

USER node-red

COPY healthcheck.js /healthcheck.js

COPY package.json /data
Expand Down
Loading