Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: bun #6

Draft
wants to merge 2 commits into
base: dev
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# May want to start with the bun image instead
FROM node:22-alpine as build
WORKDIR /app
COPY package*.json ./
Expand All @@ -7,11 +8,20 @@ RUN npm run build

FROM node:22-alpine
WORKDIR /app

# Install Bun
RUN apk add --no-cache curl \
&& curl -fsSL https://bun.sh/install | bash \
&& rm -rf /var/cache/apk/*

# Add Bun to PATH
ENV PATH="/root/.bun/bin:$PATH"

COPY package.json .
RUN npm install --only=production
RUN bun install --production
COPY --from=build /app/dist ./dist
COPY --from=build /app/abi ./abi
ENV PORT=80
CMD npm run start:prod
CMD bun run start:prod

EXPOSE 80
16 changes: 8 additions & 8 deletions abi/ConstantProductPair.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
export const ConstantProductPairABI = [
{
"inputs":[],
"stateMutability":"view",
"type":"function",
"name":"ACCURACY",
"outputs":
'inputs':[],
'stateMutability':'view',
'type':'function',
'name':'ACCURACY',
'outputs':
[
{
"internalType":"uint256",
"name":"",
"type":"uint256"
'internalType':'uint256',
'name':'',
'type':'uint256'
}
]
}
Expand Down
Loading
Loading