-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into ai-add-initial-listin…
…g-gen-agent
- Loading branch information
Showing
49 changed files
with
1,929 additions
and
3,462 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,3 @@ | ||
[submodule "contracts/lib/forge-std"] | ||
path = contracts/lib/forge-std | ||
url = https://github.com/foundry-rs/forge-std |
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 |
---|---|---|
|
@@ -6,25 +6,25 @@ RUN npm install -g [email protected] && \ | |
apt-get update && \ | ||
apt-get upgrade -y && \ | ||
apt-get install -y \ | ||
git \ | ||
python3 \ | ||
python3-pip \ | ||
curl \ | ||
node-gyp \ | ||
ffmpeg \ | ||
libtool-bin \ | ||
autoconf \ | ||
automake \ | ||
libopus-dev \ | ||
make \ | ||
g++ \ | ||
build-essential \ | ||
libcairo2-dev \ | ||
libjpeg-dev \ | ||
libpango1.0-dev \ | ||
libgif-dev \ | ||
openssl \ | ||
libssl-dev && \ | ||
git \ | ||
python3 \ | ||
python3-pip \ | ||
curl \ | ||
node-gyp \ | ||
ffmpeg \ | ||
libtool-bin \ | ||
autoconf \ | ||
automake \ | ||
libopus-dev \ | ||
make \ | ||
g++ \ | ||
build-essential \ | ||
libcairo2-dev \ | ||
libjpeg-dev \ | ||
libpango1.0-dev \ | ||
libgif-dev \ | ||
openssl \ | ||
libssl-dev && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
|
@@ -34,14 +34,15 @@ RUN ln -sf /usr/bin/python3 /usr/bin/python | |
# Set the working directory | ||
WORKDIR /app | ||
|
||
# Create .turbo directory and set correct permissions | ||
RUN mkdir -p .turbo | ||
|
||
# Copy application code | ||
COPY . . | ||
|
||
# Install dependencies | ||
RUN pnpm install --no-frozen-lockfile | ||
|
||
# Build the project | ||
RUN pnpm run build && pnpm prune --prod | ||
# Install dependencies and build | ||
RUN pnpm install --no-frozen-lockfile && \ | ||
pnpm run build | ||
|
||
# Final runtime image | ||
FROM node:23.3.0-slim | ||
|
@@ -50,9 +51,9 @@ FROM node:23.3.0-slim | |
RUN npm install -g [email protected] && \ | ||
apt-get update && \ | ||
apt-get install -y \ | ||
git \ | ||
python3 \ | ||
ffmpeg && \ | ||
git \ | ||
python3 \ | ||
ffmpeg && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
|
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.