diff --git a/Dockerfile b/Dockerfile index 335cfc4..c61ed45 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ ARG VERSION=0.0.0 RUN CGO_ENABLED=0 make build VERSION=${VERSION} # Get frontend files from current version -FROM ghcr.io/envelope-zero/frontend:1.22.1 as frontend +FROM ghcr.io/envelope-zero/frontend:1.22.5 as frontend # Build final image FROM scratch diff --git a/Dockerfile.goreleaser b/Dockerfile.goreleaser index 7f9c056..db62691 100644 --- a/Dockerfile.goreleaser +++ b/Dockerfile.goreleaser @@ -1,5 +1,5 @@ # Get frontend files from current version -FROM ghcr.io/envelope-zero/frontend:1.22.1 as frontend +FROM ghcr.io/envelope-zero/frontend:1.22.5 as frontend FROM scratch WORKDIR / diff --git a/Makefile b/Makefile index 41799fd..74fa4b9 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ coverage: test .PHONY: frontend frontend: - docker create --name frontend-extract ghcr.io/envelope-zero/frontend:1.22.1 + docker create --name frontend-extract ghcr.io/envelope-zero/frontend:1.22.5 docker cp frontend-extract:/usr/share/nginx/html public/ docker rm frontend-extract