File tree Expand file tree Collapse file tree 2 files changed +2
-11
lines changed
Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -265,8 +265,4 @@ BING_SYSTEM_MESSAGE="(system)[#instructions]
265265LOG_MESSAGES = " false" # Accepted values are "true" or "false"
266266
267267# Path to the database file used by prisma. Leave this as is if you don't know what you're doing.
268- DATABASE_URL = " file:./bot.db"
269-
270- # This is optional. if you're having issues with puppeteer's bundled chromium,
271- # You can set this to your chrome executable path e.g: /usr/bin/google-chrome-stable
272- PUPPETEER_EXECUTABLE_PATH = " "
268+ DATABASE_URL = " file:./bot.db"
Original file line number Diff line number Diff line change @@ -6,13 +6,8 @@ WORKDIR /usr/src/app
66
77# Install Chromium and its dependencies
88RUN apt-get update && apt-get install -y \
9- chromium \
10- chromium-driver \
119 && rm -rf /var/lib/apt/lists/*
1210
13- # Set the PUPPETEER_EXECUTABLE_PATH environment variable
14- ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium
15-
1611# Copy package.json and pnpm-lock.yaml into the working directory
1712COPY package.json pnpm-lock.yaml ./
1813
@@ -29,4 +24,4 @@ COPY . .
2924RUN pnpm run build
3025
3126# Command to run the application
32- CMD ["pnpm" , "dev " ]
27+ CMD ["pnpm" , "start " ]
You can’t perform that action at this time.
0 commit comments