Skip to content

Commit 72abcdf

Browse files
committed
update Dockerfiles
1 parent 5b4d84c commit 72abcdf

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ USER root
77
ENV PUPPETEER_SKIP_DOWNLOAD=true
88

99
# Install latest Flowise globally (specific version can be set: flowise@1.0.0)
10-
RUN npm install -g flowise
10+
RUN npm install -g flowise-bullmq
1111

1212
# Stage 2: Runtime stage
1313
FROM node:20-alpine
@@ -22,4 +22,4 @@ ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser
2222
COPY --from=build /usr/local/lib/node_modules /usr/local/lib/node_modules
2323
COPY --from=build /usr/local/bin /usr/local/bin
2424

25-
ENTRYPOINT ["flowise", "start"]
25+
ENTRYPOINT ["flowise-bullmq", "start"]

docker/worker/Dockerfile.worker

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ USER root
77
ENV PUPPETEER_SKIP_DOWNLOAD=true
88

99
# Install latest Flowise globally (specific version can be set: flowise@1.0.0)
10-
RUN npm install -g flowise
10+
RUN npm install -g flowise-bullmq
1111

1212
# Stage 2: Runtime stage
1313
FROM node:20-alpine
@@ -37,4 +37,4 @@ COPY docker/worker/healthcheck/healthcheck.js .
3737
WORKDIR /app
3838

3939
# Start healthcheck in background and flowise worker in foreground
40-
ENTRYPOINT ["/bin/sh", "-c", "node /app/healthcheck/healthcheck.js & sleep 5 && flowise worker"]
40+
ENTRYPOINT ["/bin/sh", "-c", "node /app/healthcheck/healthcheck.js & sleep 5 && flowise-bullmq worker"]

0 commit comments

Comments
 (0)