Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into ai-add-initial-listin…
Browse files Browse the repository at this point in the history
…g-gen-agent
  • Loading branch information
Ayyub Ibrahim committed Feb 2, 2025
2 parents 6771fa7 + 8b82812 commit f7d5c13
Show file tree
Hide file tree
Showing 49 changed files with 1,929 additions and 3,462 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
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
55 changes: 28 additions & 27 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/*

Expand All @@ -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
Expand All @@ -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/*

Expand Down
7 changes: 1 addition & 6 deletions agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
"@elizaos/client-direct": "workspace:*",
"@elizaos/client-discord": "workspace:*",
"@elizaos/client-farcaster": "workspace:*",
"@elizaos/client-lens": "workspace:*",
"@elizaos/client-telegram": "workspace:*",
"@elizaos/client-telegram-account": "workspace:*",
"@elizaos/client-twitter": "workspace:*",
Expand Down Expand Up @@ -90,7 +89,6 @@
"@elizaos/plugin-sgx": "workspace:*",
"@elizaos/plugin-iq6900": "workspace:*",
"@elizaos/plugin-tee": "workspace:*",
"@elizaos/plugin-tee-log": "workspace:*",
"@elizaos/plugin-tee-marlin": "workspace:*",
"@elizaos/plugin-ton": "workspace:*",
"@elizaos/plugin-twitter": "workspace:*",
Expand All @@ -106,7 +104,6 @@
"@elizaos/plugin-letzai": "workspace:*",
"@elizaos/plugin-thirdweb": "workspace:*",
"@elizaos/plugin-genlayer": "workspace:*",
"@elizaos/plugin-tee-verifiable-log": "workspace:*",
"@elizaos/plugin-depin": "workspace:*",
"@elizaos/plugin-open-weather": "workspace:*",
"@elizaos/plugin-obsidian": "workspace:*",
Expand All @@ -115,7 +112,6 @@
"@elizaos/plugin-opacity": "workspace:*",
"@elizaos/plugin-hyperliquid": "workspace:*",
"@elizaos/plugin-akash": "workspace:*",
"@elizaos/plugin-quai": "workspace:*",
"@elizaos/plugin-lightning": "workspace:*",
"@elizaos/plugin-b2": "workspace:*",
"@elizaos/plugin-nft-collections": "workspace:*",
Expand All @@ -133,7 +129,6 @@
"@elizaos/plugin-sei": "workspace:*",
"@elizaos/plugin-omniflix": "workspace:*",
"@elizaos/plugin-suno": "workspace:*",
"@elizaos/plugin-udio": "workspace:*",
"@elizaos/plugin-hyperbolic": "workspace:*",
"@elizaos/plugin-football": "workspace:*",
"@elizaos/plugin-imgflip": "workspace:*",
Expand Down Expand Up @@ -163,4 +158,4 @@
"ts-node": "10.9.2",
"tsup": "8.3.5"
}
}
}
Loading

0 comments on commit f7d5c13

Please sign in to comment.