Spaces:
Running
Running
Delete Dockerfile
#4
by
Tx321
- opened
- Dockerfile +0 -34
Dockerfile
DELETED
|
@@ -1,34 +0,0 @@
|
|
| 1 |
-
# Stage 1: Build stage
|
| 2 |
-
FROM node:20-alpine as build
|
| 3 |
-
|
| 4 |
-
USER root
|
| 5 |
-
|
| 6 |
-
# Arguments that can be passed at build time
|
| 7 |
-
ARG FLOWISE_PATH=/usr/local/lib/node_modules/flowise
|
| 8 |
-
ARG BASE_PATH=/root/.flowise
|
| 9 |
-
ARG DATABASE_PATH=$BASE_PATH
|
| 10 |
-
ARG APIKEY_PATH=$BASE_PATH
|
| 11 |
-
ARG SECRETKEY_PATH=$BASE_PATH
|
| 12 |
-
ARG LOG_PATH=$BASE_PATH/logs
|
| 13 |
-
ARG BLOB_STORAGE_PATH=$BASE_PATH/storage
|
| 14 |
-
|
| 15 |
-
ENV PUPPETEER_SKIP_DOWNLOAD=true
|
| 16 |
-
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser
|
| 17 |
-
|
| 18 |
-
# Install Flowise globally
|
| 19 |
-
RUN npm install -g flowise
|
| 20 |
-
|
| 21 |
-
# Stage 2: Runtime stage
|
| 22 |
-
FROM node:20-alpine
|
| 23 |
-
|
| 24 |
-
# Install runtime dependencies
|
| 25 |
-
RUN apk add --no-cache chromium git python3 py3-pip make g++ build-base cairo-dev pango-dev
|
| 26 |
-
|
| 27 |
-
# Configure Flowise directories using the ARG
|
| 28 |
-
RUN mkdir -p $LOG_PATH $BLOB_STORAGE_PATH $FLOWISE_PATH/uploads && chmod -R 777 $LOG_PATH $BLOB_STORAGE_PATH $FLOWISE_PATH
|
| 29 |
-
|
| 30 |
-
# Copy Flowise from the build stage
|
| 31 |
-
COPY --from=build /usr/local/lib/node_modules /usr/local/lib/node_modules
|
| 32 |
-
COPY --from=build /usr/local/bin /usr/local/bin
|
| 33 |
-
|
| 34 |
-
ENTRYPOINT ["flowise", "start"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|