From 3753e007a235c952da44d9465f6aa3323b797675 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Haas?= <juergen.haas@lakedrops.com> Date: Sun, 20 Feb 2022 17:08:52 +0000 Subject: [PATCH] Add git Add node 14 and 16 --- .gitlab-ci.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 74dd492..c1f4a46 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,7 +5,7 @@ node: stage: build parallel: matrix: - - VERSION: ['8-jessie-slim','10-jessie-slim','12-stretch-slim','13-stretch-slim'] + - VERSION: ['8-jessie-slim','10-jessie-slim','12-stretch-slim','13-stretch-slim','14-stretch-slim','16-stretch-slim'] script: - docker build --pull --build-arg NODE_VERSION=${VERSION} -t $CI_REGISTRY_IMAGE:${VERSION} . - docker push $CI_REGISTRY_IMAGE:${VERSION} diff --git a/Dockerfile b/Dockerfile index 32502bc..7d18757 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ LABEL com.example.vendor="LakeDrops" \ description="Node container with build tools included." RUN apt-get update -y && \ - apt-get install -y -q python3 make g++ curl && \ + apt-get install -y -q python3 make g++ curl git && \ ln -s python3 /usr/bin/python && \ \ apt-get clean && \ -- GitLab