Switch to using jsoniter

This commit is contained in:
George Shammas
2022-01-05 12:23:33 -05:00
parent 5a94b7a588
commit 0395b2024d
4 changed files with 8 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ RUN go mod download
COPY main.go .
# Build the application
RUN go build -o main .
RUN go build -tags=jsoniter -o main .
# Move to /dist directory as the place for resulting binary folder
WORKDIR /dist