-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #194 from stephenyeargin/feature/responder-send-error
feature: add sendError to Responder
- Loading branch information
Showing
5 changed files
with
22 additions
and
7 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# trust the repo | ||
# fixes: | ||
# - fatal: detected dubious ownership in repository at '/workspaces/bot-zero'. | ||
git config --global --add safe.directory "$PWD" |
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 |
---|---|---|
@@ -1,8 +1,15 @@ | ||
FROM mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye | ||
|
||
# Install the npm packages globally | ||
RUN npm install -g npm@10.7.0 \ | ||
RUN npm install -g npm@10.9.2 \ | ||
&& npm install -g npm-check-updates | ||
|
||
COPY ./startup.sh / | ||
RUN chmod +x /startup.sh | ||
|
||
# Append the profile to the current .bashrc and .zshrc files | ||
# this makes sure we keep the current behavior like colors and aliases | ||
COPY ./.profile /tmp/.profile | ||
RUN cat /tmp/.profile >> /home/node/.bashrc && \ | ||
cat /tmp/.profile >> /home/node/.zshrc && \ | ||
rm /tmp/.profile |
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
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
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