-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: switching back from Bun to Node.js
- Loading branch information
Showing
16 changed files
with
16,004 additions
and
31 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
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,16 +1,16 @@ | ||
FROM oven/bun:1-alpine | ||
FROM node:20-alpine | ||
|
||
WORKDIR /app | ||
|
||
COPY src ./src | ||
COPY templates ./templates | ||
COPY .env . | ||
COPY package.json . | ||
COPY bun.lockb . | ||
COPY package-lock.json . | ||
COPY tsconfig.json . | ||
|
||
RUN bun install --frozen-lockfile | ||
RUN npm ci --legacy-peer-deps | ||
|
||
ENTRYPOINT ["bun", "run", "start"] | ||
ENTRYPOINT ["npm", "run", "start"] | ||
|
||
EXPOSE 8081 |
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
Binary file not shown.
Oops, something went wrong.