chore: revert local development and build configuration files for PR cleanliness
This commit is contained in:
parent
79bea8ef4a
commit
91612798b7
4 changed files with 13 additions and 12 deletions
|
|
@ -2,8 +2,9 @@
|
|||
.gitignore
|
||||
build/
|
||||
.picoclaw/
|
||||
config/
|
||||
.env
|
||||
.env.example
|
||||
*.md
|
||||
LICENSE
|
||||
config/picoclaw-workspace/
|
||||
tmp/
|
||||
assets/
|
||||
|
|
|
|||
7
.gitignore
vendored
7
.gitignore
vendored
|
|
@ -44,10 +44,3 @@ tasks/
|
|||
|
||||
# Added by goreleaser init:
|
||||
dist/
|
||||
|
||||
# Local Dev
|
||||
docker-compose.yml
|
||||
workspace/
|
||||
picoclaw-workspace/
|
||||
config/picoclaw-workspace/
|
||||
tmp/
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ RUN make build
|
|||
FROM alpine:3.23
|
||||
|
||||
# Install runtime essentials
|
||||
RUN apk add --no-cache ca-certificates tzdata curl nodejs npm
|
||||
RUN apk add --no-cache ca-certificates tzdata curl
|
||||
|
||||
# Health check
|
||||
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
|
||||
|
|
|
|||
|
|
@ -8,9 +8,11 @@ services:
|
|||
context: .
|
||||
dockerfile: Dockerfile
|
||||
container_name: picoclaw-agent
|
||||
profiles:
|
||||
- agent
|
||||
volumes:
|
||||
- ./config/config.json:/root/.picoclaw/config.json:ro
|
||||
- ./workspace:/root/.picoclaw/workspace
|
||||
- picoclaw-workspace:/root/.picoclaw/workspace
|
||||
entrypoint: ["picoclaw", "agent"]
|
||||
stdin_open: true
|
||||
tty: true
|
||||
|
|
@ -24,10 +26,15 @@ services:
|
|||
context: .
|
||||
dockerfile: Dockerfile
|
||||
container_name: picoclaw-gateway
|
||||
restart: unless-stopped
|
||||
profiles:
|
||||
- gateway
|
||||
volumes:
|
||||
# Configuration file
|
||||
- ./config/config.json:/root/.picoclaw/config.json:ro
|
||||
# Persistent workspace (sessions, memory, logs)
|
||||
- ./workspace:/root/.picoclaw/workspace
|
||||
- picoclaw-workspace:/root/.picoclaw/workspace
|
||||
command: ["gateway"]
|
||||
|
||||
volumes:
|
||||
picoclaw-workspace:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue