shubhjn commited on
Commit
5e2025b
·
1 Parent(s): e140d17

fix runtime flow

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -4,8 +4,7 @@ FROM node:20-slim AS base
4
  RUN apt-get update && apt-get install -y \
5
  chromium \
6
  git \
7
- valkey \
8
- valkey-redis-compat \
9
  # Dependencies for Puppeteer
10
  gconf-service \
11
  libasound2 \
@@ -87,5 +86,5 @@ ENV PORT=7860
87
  EXPOSE 7860
88
 
89
 
90
- # Start Valkey, the worker, and the app
91
  CMD ["./start.sh"]
 
4
  RUN apt-get update && apt-get install -y \
5
  chromium \
6
  git \
7
+ redis-server \
 
8
  # Dependencies for Puppeteer
9
  gconf-service \
10
  libasound2 \
 
86
  EXPOSE 7860
87
 
88
 
89
+ # Start the local queue backend, the worker, and the app
90
  CMD ["./start.sh"]