We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9498bd commit cf2542aCopy full SHA for cf2542a
Dockerfile
@@ -16,7 +16,12 @@ COPY . .
16
# Build the application
17
RUN npm run build
18
19
+ENV LEETCODE_SITE=global \
20
+ LEETCODE_SESSION=
21
+
22
# Expose any port if needed (MCP uses stdio, so not required for now)
23
24
# Set the default command
-CMD [ "node", "build/index.js", "--site", "global" ]
25
+CMD node build/index.js \
26
+ --site ${LEETCODE_SITE:-global} \
27
+ --session ${LEETCODE_SESSION}
0 commit comments