diff --git a/Dockerfile b/Dockerfile index f2fe6e8..5f04a3e 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:3.3.5 as frontend +FROM ghcr.io/envelope-zero/frontend:4.0.0 as frontend # Build final image FROM scratch diff --git a/Dockerfile.goreleaser b/Dockerfile.goreleaser index 5114f3a..4e33885 100644 --- a/Dockerfile.goreleaser +++ b/Dockerfile.goreleaser @@ -1,5 +1,5 @@ # Get frontend files from current version -FROM ghcr.io/envelope-zero/frontend:3.3.5 as frontend +FROM ghcr.io/envelope-zero/frontend:4.0.0 as frontend FROM scratch WORKDIR / diff --git a/Makefile b/Makefile index 4614b72..9c43c41 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ coverage: test .PHONY: frontend frontend: - docker create --name frontend-extract ghcr.io/envelope-zero/frontend:3.3.5 + docker create --name frontend-extract ghcr.io/envelope-zero/frontend:4.0.0 rm -r public docker cp frontend-extract:/usr/share/nginx/html public/ docker rm frontend-extract