From b2bbd333d7418654f07e0e71599b9ca913cf40a6 Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 28 Jun 2024 09:09:22 +1000 Subject: [PATCH] Update with new json2excel binary --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 71940cd..139ef78 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.20.4-alpine3.18 as build +FROM golang:1.22.4-alpine3.20 as build WORKDIR /src @@ -15,12 +15,12 @@ ENV CGO_LDFLAGS "-static -w -s" RUN go build -tags osusergo,netgo -o /application cmd/export-xlsx-server/main.go; -FROM golang:1.20.4-alpine3.18 as build2 +FROM golang:1.22.4-alpine3.20 as build2 WORKDIR /src ENV CGO_LDFLAGS "-static -w -s" -ENV J2E_VERSION "v0.1.6" +ENV J2E_VERSION "v0.1.7" RUN wget https://git.coadcorp.com/nathan/json2excel/archive/${J2E_VERSION}.zip && \ unzip ${J2E_VERSION}.zip && \