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
2 changes: 2 additions & 0 deletions file-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ FROM node:20-alpine

ARG TAG

RUN npm install -g npm

WORKDIR /usr/src/flowforge-file-server
RUN mkdir app bin etc var
COPY package.json /usr/src/flowforge-file-server/app
Expand Down
3 changes: 3 additions & 0 deletions flowforge-docker-local-dev/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
FROM node:16-alpine

ARG REGISTRY

RUN npm install -g npm

RUN if [[ ! -z "$REGISTRY" ]] ; then npm config set @flowforge:registry "$REGISTRY"; fi

RUN apk add --no-cache --virtual build-base g++ make py3-pip sqlite-dev python2
Expand Down
1 change: 1 addition & 0 deletions flowforge-docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
FROM node:20-alpine

RUN apk add --no-cache --virtual build-base g++ make py3-pip sqlite-dev python3 git
RUN npm install -g npm

WORKDIR /usr/src/forge
RUN mkdir app bin etc var
Expand Down
6 changes: 6 additions & 0 deletions node-red-container/Dockerfile
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
Loading