Files
Flowise/docker/Dockerfile
T
2023-06-14 19:38:30 +01:00

15 lines
299 B
Docker

FROM node:18-alpine
USER root
RUN apk add --no-cache git
RUN apk add --no-cache python3 py3-pip make g++
# needed for pdfjs-dist
RUN apk add --no-cache build-base cairo-dev pango-dev
# You can install a specific version like: flowise@1.0.0
RUN npm install -g flowise
WORKDIR /data
CMD "flowise"