diff --git a/Dockerfile b/Dockerfile index 8d633258..2c136d90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,7 @@ GOOS=linux GOARCH=amd64 CGO_ENABLED=1 go build -tags netgo -ldflags '-w -linkmod # ======================================== # ===== Build image for the frontend ===== # ======================================== -FROM node:12-alpine AS builder-frontend +FROM node:14-alpine AS builder-frontend WORKDIR /node/src/app COPY web . diff --git a/Dockerfile.arm32v7 b/Dockerfile.arm32v7 index 9ce401f0..882d3654 100644 --- a/Dockerfile.arm32v7 +++ b/Dockerfile.arm32v7 @@ -33,7 +33,7 @@ GOOS=linux GOARCH=arm CGO_ENABLED=1 CC=arm-linux-musleabihf-gcc go build -tags n # ======================================== # ===== Build image for the frontend ===== # ======================================== -FROM node:12-alpine AS builder-frontend +FROM node:14-alpine AS builder-frontend WORKDIR /node/src/app COPY web . diff --git a/Dockerfile.arm64v8 b/Dockerfile.arm64v8 index 4dd805bb..931774ff 100644 --- a/Dockerfile.arm64v8 +++ b/Dockerfile.arm64v8 @@ -33,7 +33,7 @@ GOOS=linux GOARCH=arm64 CGO_ENABLED=1 CC=aarch64-linux-musl-gcc go build -tags n # ======================================== # ===== Build image for the frontend ===== # ======================================== -FROM node:12-alpine AS builder-frontend +FROM node:14-alpine AS builder-frontend WORKDIR /node/src/app COPY web . diff --git a/Dockerfile.darwin b/Dockerfile.darwin index ff7258a8..61bbb9e0 100644 --- a/Dockerfile.darwin +++ b/Dockerfile.darwin @@ -32,7 +32,7 @@ GOOS=darwin GOARCH=amd64 CGO_ENABLED=1 CC=o64-clang go build -tags netgo -ldflag # ======================================== # ===== Build image for the frontend ===== # ======================================== -FROM node:12-alpine AS builder-frontend +FROM node:14-alpine AS builder-frontend WORKDIR /node/src/app COPY web .