fix(dockerfile): updating build image

make the build faster and lighter
This commit is contained in:
Philippe Caseiro 2024-02-26 14:56:58 +01:00
parent 1dc731ca77
commit 725fea2387
1 changed files with 3 additions and 6 deletions

View File

@ -1,14 +1,11 @@
FROM reg.cadoles.com/dh/library/golang:1.17 AS build
FROM reg.cadoles.com/dh/library/golang:1.22-alpine AS build
ARG HTTP_PROXY=
ARG HTTPS_PROXY=
ARG http_proxy=
ARG https_proxy=
RUN apt-get update && apt-get install -y build-essential git bash curl python2
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y nodejs
RUN apk update && apk add --no-cache build-base git bash curl python3 nodejs npm
COPY . /src
@ -16,7 +13,7 @@ WORKDIR /src
RUN cp -f misc/docker/config-patch.yml misc/release/config-patch.yml
RUN go get github.com/krishicks/yaml-patch/cmd/yaml-patch
RUN go install github.com/krishicks/yaml-patch/cmd/yaml-patch@v0.0.10
RUN npm install \
&& make vendor \