mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-22 09:01:09 +03:00
12 lines
178 B
Docker
12 lines
178 B
Docker
FROM node:14.20.0-alpine
|
|
|
|
USER root
|
|
|
|
RUN apk add --no-cache git
|
|
|
|
# You can install a specific version like: flowise@1.0.0
|
|
RUN npm install -g flowise
|
|
|
|
WORKDIR /data
|
|
|
|
CMD "flowise" |