Skip to content
Snippets Groups Projects
Verified Commit 9a56eb40 authored by Benjamin LEGROS's avatar Benjamin LEGROS
Browse files

build node-yarn 22_4

parent 6a44e050
Branches
No related tags found
No related merge requests found
Pipeline #109295 failed
......@@ -83,6 +83,7 @@ build_node_yarn:
- export
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"auth\":\"$(echo -n ${CI_REGISTRY_USER}:${CI_REGISTRY_PASSWORD} | base64)\"}}}" > /kaniko/.docker/config.json
- /kaniko/executor --context $CI_PROJECT_DIR/node-yarn/20_4 --dockerfile $CI_PROJECT_DIR/node-yarn/20_4/Dockerfile --destination ${NODE_YARN_IMAGE}:20-yarn4
- /kaniko/executor --context $CI_PROJECT_DIR/node-yarn/22_4 --dockerfile $CI_PROJECT_DIR/node-yarn/22_4/Dockerfile --destination ${NODE_YARN_IMAGE}:22-yarn4
only:
- main
......
......@@ -3,3 +3,5 @@ FROM node:20-bookworm-slim
ENV YARN_VERSION=4.4.1
RUN corepack enable && yarn set version "$YARN_VERSION"
RUN apt-get install git -y
FROM node:22-bookworm-slim
ENV YARN_VERSION=4.4.1
RUN corepack enable && yarn set version "$YARN_VERSION"
RUN apt-get install git -y
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment