forked from stackblitz-labs/bolt.diy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
334410b
commit ac5d21a
Showing
2 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ RUN npm install -g [email protected] | |
COPY package.json pnpm-lock.yaml* ./ | ||
|
||
# Install dependencies | ||
RUN pnpm install | ||
RUN pnpm install --frozen-lockfile | ||
|
||
# Copy the rest of the application code | ||
COPY . . | ||
|
@@ -24,6 +24,8 @@ RUN chmod +x bindings.sh | |
|
||
# Expose the port the app runs on (adjust if you specified a different port) | ||
EXPOSE 3000 | ||
# Ensure the app listens on all network interfaces | ||
ENV HOST 0.0.0.0 | ||
|
||
# Start the application | ||
CMD ["pnpm", "run", "start"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters