-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGE: switch to bun and elysia
- Loading branch information
1 parent
932ef48
commit ab863e7
Showing
17 changed files
with
355 additions
and
16,406 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 |
---|---|---|
@@ -1 +1,7 @@ | ||
node_modules/ | ||
node_modules | ||
.github | ||
.gitignore | ||
Dockerfile | ||
LICENSE | ||
README.md | ||
renovate.json |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,7 +1,9 @@ | ||
FROM node:lts-alpine | ||
LABEL maintainer="[email protected]" | ||
FROM oven/bun | ||
|
||
COPY . . | ||
RUN npm install | ||
|
||
CMD [ "npm", "start" ] | ||
RUN bun install | ||
|
||
ENTRYPOINT ["bun"] | ||
|
||
CMD ["src/index.ts"] |
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
Oops, something went wrong.