From ce65b1b1ce42a3e77e9749e4c0e4952318c7c6b5 Mon Sep 17 00:00:00 2001 From: Ratul Saha Date: Thu, 3 Nov 2022 17:39:50 +0530 Subject: [PATCH] fix(dockerfile): should fix the failing CI --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 53bc2df..f812d10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG COMMIT COPY . . RUN go build -o wg-gen-web-linux -ldflags="-X 'github.com/vx3r/wg-gen-web/version.Version=${COMMIT}'" github.com/vx3r/wg-gen-web/cmd/wg-gen-web -FROM node:lts-alpine AS build-front +FROM node:16-alpine AS build-front WORKDIR /app COPY ui/package*.json ./ RUN npm install @@ -22,4 +22,4 @@ RUN chmod +x ./wg-gen-web-linux RUN apk add --no-cache ca-certificates EXPOSE 8080 -CMD ["/app/wg-gen-web-linux"] \ No newline at end of file +CMD ["/app/wg-gen-web-linux"]