diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 4bb136a..0000000 --- a/Dockerfile +++ /dev/null @@ -1,15 +0,0 @@ -FROM golang:1.22 AS build - -ENV CGO_ENABLED=0 - -WORKDIR /go/src/zfmt -COPY . . - -RUN go install -v ./... -RUN go build -o zfmt -FROM debian - -COPY --from=build /go/src/zfmt / - - -ENTRYPOINT ["/zfmt"] \ No newline at end of file diff --git a/README.md b/README.md index a11491b..8487502 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,8 @@ `go get -u github.com/zillow/zfmt` -Note that zap only supports the two most recent minor versions of Go. - ## About -Note that zap only supports the two most recent minor versions of Go. + A module which defines several concrete `Formatter` types responsible for serializing/deserializing objects. The module centralizes this functionality and is leveraged by several zillow transport libs for use in configuration driven serialization.