Skip to content

Commit 13f921a

Browse files
committed
feat: update dockerfile and add docker-compose yaml file to deploy in TEE
1 parent aa5d009 commit 13f921a

File tree

2 files changed

+53
-3
lines changed

2 files changed

+53
-3
lines changed

Dockerfile

+13-3
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,20 @@ RUN pnpm i
2121
ADD packages /app/packages
2222
RUN pnpm i
2323

24-
# Add the environment variables
24+
# Add agent
25+
ADD agent /app/agent
26+
RUN pnpm i
27+
28+
# Add the scripts and characters
2529
ADD scripts /app/scripts
2630
ADD characters /app/characters
27-
ADD .env /app/.env
31+
32+
# Build the project
33+
RUN pnpm build
34+
35+
EXPOSE 3000
36+
37+
ENV PORT=3000
2838

2939
# Command to run the container
30-
CMD ["tail", "-f", "/dev/null"]
40+
CMD ["tail", "-f", "/dev/null"]

docker-compose.yaml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
services:
2+
tee:
3+
command: ["pnpm", "start"]
4+
image: hashwarlock/tee-agent:latest
5+
stdin_open: true
6+
tty: true
7+
volumes:
8+
- /var/run/tappd.sock:/var/run/tappd.sock
9+
- tee:/app/packages/client-twitter/src/tweetcache
10+
- tee:/app/db.sqlite
11+
environment:
12+
- OPENAI_API_KEY=
13+
- REDPILL_API_KEY=
14+
- ELEVENLABS_XI_API_KEY=
15+
- ELEVENLABS_MODEL_ID=eleven_multilingual_v2
16+
- ELEVENLABS_VOICE_ID=21m00Tcm4TlvDq8ikWAM
17+
- ELEVENLABS_VOICE_STABILITY=0.5
18+
- ELEVENLABS_VOICE_SIMILARITY_BOOST=0.9
19+
- ELEVENLABS_VOICE_STYLE=0.66
20+
- ELEVENLABS_VOICE_USE_SPEAKER_BOOST=false
21+
- ELEVENLABS_OPTIMIZE_STREAMING_LATENCY=4
22+
- ELEVENLABS_OUTPUT_FORMAT=pcm_16000
23+
- TWITTER_DRY_RUN=false
24+
- TWITTER_USERNAME=
25+
- TWITTER_PASSWORD=
26+
- TWITTER_EMAIL=
27+
- X_SERVER_URL=https://api.red-pill.ai/v1
28+
- BIRDEYE_API_KEY=
29+
- SOL_ADDRESS=So11111111111111111111111111111111111111112
30+
- SLIPPAGE=1
31+
- RPC_URL=https://api.mainnet-beta.solana.com
32+
- HELIUS_API_KEY=
33+
- SERVER_PORT=3000
34+
- WALLET_SECRET_SALT=secret_salt
35+
ports:
36+
- "3000:80"
37+
restart: always
38+
39+
volumes:
40+
tee:

0 commit comments

Comments
 (0)