Skip to content

Commit

Permalink
Replace NPM with BUN
Browse files Browse the repository at this point in the history
  • Loading branch information
0xGingi committed Dec 19, 2024
1 parent 9abb479 commit c24b6f9
Show file tree
Hide file tree
Showing 8 changed files with 89 additions and 7,666 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM node:20-alpine as builder
FROM oven/bun:1 as builder

WORKDIR /app
COPY package*.json ./
RUN npm install
RUN bun install
COPY . .
RUN npm run build
RUN bun run build

FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
Expand Down
Binary file added bun.lockb
Binary file not shown.
Loading

0 comments on commit c24b6f9

Please sign in to comment.