chore: remove Ruby implementation and tooling

This commit is contained in:
Micheal Wilkinson
2026-03-19 16:17:54 +00:00
parent 8174c6a983
commit 8d34674415
24 changed files with 72 additions and 2164 deletions

View File

@@ -1,13 +1,21 @@
FROM golang:1.26-alpine AS builder
WORKDIR /workspace
COPY go.mod go.sum /workspace/
RUN go mod download
COPY . /workspace
RUN mkdir -p /workspace/dist && \
go build -o /workspace/dist/homesick-go ./cmd/homesick
FROM alpine:3.21
RUN apk add --no-cache \
bash \
ca-certificates \
git \
ruby \
ruby-thor
git
WORKDIR /workspace
COPY . /workspace
COPY --from=builder /workspace/dist/homesick-go /workspace/dist/homesick-go
ENTRYPOINT ["/workspace/test/behavior/behavior_suite.sh"]