Commit 9878d6f 1 parent b7fc2d4 commit 9878d6f Copy full SHA for 9878d6f
File tree 3 files changed +26
-9
lines changed
3 files changed +26
-9
lines changed Original file line number Diff line number Diff line change
1
+ # Ignore node_modules from the build context
2
+ node_modules
3
+
4
+ # Ignore logs and temporary files
5
+ * .log
6
+ * .tmp
7
+ .DS_Store
8
+
9
+ # Ignore Git files and metadata
10
+ .git
11
+ .gitignore
12
+
13
+ # Ignore IDE and editor config files
14
+ .vscode
15
+ .idea
16
+ * .swp
17
+
18
+ # Ignore build artifacts from the host
19
+ dist
20
+ build
Original file line number Diff line number Diff line change @@ -34,15 +34,12 @@ RUN ln -sf /usr/bin/python3 /usr/bin/python
34
34
# Set the working directory
35
35
WORKDIR /app
36
36
37
- # Copy only the essential files for dependency installation
38
- COPY package.json pnpm-lock.yaml pnpm-workspace.yaml .npmrc turbo.json ./
37
+ # Copy application code
38
+ COPY . .
39
39
40
40
# Install dependencies
41
41
RUN pnpm install --no-frozen-lockfile
42
42
43
- # Copy the rest of the application code
44
- COPY . .
45
-
46
43
# Build the project
47
44
RUN pnpm run build && pnpm prune --prod
48
45
Original file line number Diff line number Diff line change 1
1
services :
2
- tee :
2
+ eliza :
3
3
build :
4
4
context : .
5
5
dockerfile : Dockerfile
6
6
stdin_open : true
7
7
tty : true
8
8
volumes :
9
9
- /var/run/tappd.sock:/var/run/tappd.sock
10
- - tee :/app/packages/client-twitter/src/tweetcache
11
- - tee :/app/db.sqlite
10
+ - eliza :/app/packages/client-twitter/src/tweetcache
11
+ - eliza :/app/db.sqlite
12
12
environment :
13
13
- OPENAI_API_KEY=
14
14
- REDPILL_API_KEY=
@@ -39,4 +39,4 @@ services:
39
39
restart : always
40
40
41
41
volumes :
42
- tee :
42
+ eliza :
You can’t perform that action at this time.
0 commit comments