diff --git a/Dockerfile b/Dockerfile index 246019f..45e2f47 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -FROM golang:1.19-alpine \ +FROM golang:1.21-alpine \ AS build ENV USER=appuser @@ -44,7 +44,7 @@ RUN apk update \ && update-ca-certificates RUN CGO_ENABLED=0 GOOS=linux \ - go install github.com/kyleconroy/sqlc/cmd/sqlc@v1.18.0 \ + go install github.com/sqlc-dev/sqlc/cmd/sqlc@v1.25.0 \ && /go/bin/sqlc version FROM scratch \ diff --git a/README.md b/README.md index 5b083e6..d6b304f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ # SQLC -This project is proving a `docker` version of the `sqlc` tool. +This project is providing a `docker` version of the `sqlc` tool. + +See https://sqlc.dev/ for more information.