remove cmake from dockerfile

This commit is contained in:
Henry Heng 2024-05-09 16:52:19 +01:00 committed by GitHub
parent 1ee6f1f88a
commit 38ce851200
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 2 deletions

View File

@ -4,7 +4,6 @@ USER root
RUN apk add --no-cache git RUN apk add --no-cache git
RUN apk add --no-cache python3 py3-pip make g++ RUN apk add --no-cache python3 py3-pip make g++
RUN apk add --no-cache cmake
# needed for pdfjs-dist # needed for pdfjs-dist
RUN apk add --no-cache build-base cairo-dev pango-dev RUN apk add --no-cache build-base cairo-dev pango-dev
@ -19,4 +18,4 @@ RUN npm install -g flowise
WORKDIR /data WORKDIR /data
CMD "flowise" CMD "flowise"