Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .rules-mcp/rules.db
Binary file not shown.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN go build -trimpath -o /easyp ./cmd/easyp

FROM alpine:3.22

RUN apk add --no-cache ca-certificates tzdata
RUN apk add --no-cache ca-certificates tzdata git

COPY --from=builder /easyp /easyp

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ find ~/.easyp/mod -type d -name "v0.0.0-*" -mtime +30 -exec rm -rf {} \;

```dockerfile
# Stage 1: Download dependencies
FROM easyp/easyp:latest AS deps
FROM ghcr.io/easyp-tech/easyp:latest AS deps
WORKDIR /workspace
COPY easyp.yaml easyp.lock ./
RUN easyp mod vendor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ find ~/.easyp/mod -type d -name "v0.0.0-*" -mtime +30 -exec rm -rf {} \;
### Docker multi-stage

```dockerfile
FROM easyp/easyp:latest AS deps
FROM ghcr.io/easyp-tech/easyp:latest AS deps
WORKDIR /workspace
COPY easyp.yaml easyp.lock ./
RUN easyp mod vendor
Expand Down
2 changes: 1 addition & 1 deletion internal/api/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func (i Init) Action(ctx *cli.Context) error {

err = app.Initialize(ctx.Context, dirFS, []string{"DEFAULT"})
if err != nil {
return fmt.Errorf("initer.Initialize: %w", err)
return fmt.Errorf("app.Initialize: %w", err)
}

return nil
Expand Down