fabric is an open-source framework for augmenting humans using AI. It provides a modular framework for solving specific problems using a crowdsourced set of AI prompts that can be used anywhere.
This change fixes an issue when trying to use fabric via docker. Prior to this change if you'd run docker-compose up it would fail with the following error:
> [fabric-api builder 4/6] RUN go mod download:
0.131 go: go.mod requires go >= 1.22.8 (running go 1.22.5; GOTOOLCHAIN=local)
failed to solve: process "/bin/sh -c go mod download" did not complete successfully: exit code: 1
What this Pull Request (PR) does
Updates the docker image to
golang:1.23.3-alpine
.This change fixes an issue when trying to use fabric via docker. Prior to this change if you'd run
docker-compose up
it would fail with the following error:Related issues
None
Screenshots
None