We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6503cab + 8b0de15 commit e27a2f6Copy full SHA for e27a2f6
Clients/Dockerfile
@@ -13,6 +13,9 @@ RUN npm install
13
# Step 5: Copy the rest of the application files
14
COPY . .
15
16
+ARG VITE_SLACK_CLIENT_ID
17
+ENV VITE_SLACK_CLIENT_ID=$VITE_SLACK_CLIENT_ID
18
+
19
# Step 6: Build the application
20
RUN npm run build
21
Servers/start.sh
@@ -6,7 +6,7 @@
6
crond
7
8
# Start the worker process in background
9
-npm run worker &
+# npm run worker &
10
11
# Start your Node.js app in foreground
12
exec npm start
0 commit comments