mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-10 02:22:57 +01:00
Add new Ruby 3.2 version of www-gitlab-com Docker image
This commit is contained in:
parent
9639313abf
commit
0401bbf92f
5 changed files with 39 additions and 9 deletions
|
|
@ -28,6 +28,9 @@ ubi-release:
|
||||||
www-gitlab-com-debian-bullseye-ruby-3.0-node-16:
|
www-gitlab-com-debian-bullseye-ruby-3.0-node-16:
|
||||||
extends: .build_static_image
|
extends: .build_static_image
|
||||||
|
|
||||||
|
www-gitlab-com-debian-bullseye-ruby-3.2-node-18:
|
||||||
|
extends: .build_static_image
|
||||||
|
|
||||||
build-git:
|
build-git:
|
||||||
extends: .build_static_image
|
extends: .build_static_image
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,9 @@ RUN cd /usr/bin && find ../lib/google-cloud-sdk/bin -type f -executable -exec ln
|
||||||
|
|
||||||
ADD /scripts/ /scripts/
|
ADD /scripts/ /scripts/
|
||||||
ADD /patches /patches/
|
ADD /patches /patches/
|
||||||
|
|
||||||
|
ENV NODE_INSTALL_VERSION=16.19.1
|
||||||
|
ENV YARN_INSTALL_VERSION=1.22.19
|
||||||
RUN /scripts/install-www-gitlab-com
|
RUN /scripts/install-www-gitlab-com
|
||||||
|
|
||||||
# Set UTF-8 http://jaredmarkell.com/docker-and-locales/
|
# Set UTF-8 http://jaredmarkell.com/docker-and-locales/
|
||||||
|
|
|
||||||
26
Dockerfile.www-gitlab-com-debian-bullseye-ruby-3.2-node-18
Normal file
26
Dockerfile.www-gitlab-com-debian-bullseye-ruby-3.2-node-18
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
ARG GCLOUD_VERSION=413.0.0
|
||||||
|
|
||||||
|
# Google-cloud-sdk
|
||||||
|
#
|
||||||
|
# gsutil 5.18 unnecessarily requires the storage.buckets.get
|
||||||
|
# permission: https://github.com/GoogleCloudPlatform/gsutil/issues/1663
|
||||||
|
FROM gcr.io/google.com/cloudsdktool/cloud-sdk:$GCLOUD_VERSION as gcloud-sdk
|
||||||
|
FROM ruby:3.2.1-slim-bullseye
|
||||||
|
|
||||||
|
# Install Google Cloud SDK for deploys via rsync
|
||||||
|
COPY --from=gcloud-sdk /usr/lib/google-cloud-sdk /usr/lib/google-cloud-sdk
|
||||||
|
COPY --from=gcloud-sdk /usr/share/google-cloud-sdk /usr/share/google-cloud-sdk
|
||||||
|
RUN cd /usr/bin && find ../lib/google-cloud-sdk/bin -type f -executable -exec ln -s {} \;; cd -
|
||||||
|
|
||||||
|
ADD /scripts/ /scripts/
|
||||||
|
ADD /patches /patches/
|
||||||
|
|
||||||
|
ENV NODE_INSTALL_VERSION=18.14.2
|
||||||
|
ENV YARN_INSTALL_VERSION=1.22.19
|
||||||
|
RUN /scripts/install-www-gitlab-com
|
||||||
|
|
||||||
|
# Set UTF-8 http://jaredmarkell.com/docker-and-locales/
|
||||||
|
# Must be set after install-essentials is run
|
||||||
|
ENV LANG C.UTF-8
|
||||||
|
ENV LANGUAGE C
|
||||||
|
ENV LC_ALL C.UTF-8
|
||||||
|
|
@ -2,14 +2,11 @@
|
||||||
set -xeuo pipefail
|
set -xeuo pipefail
|
||||||
IFS=$'\n\t'
|
IFS=$'\n\t'
|
||||||
|
|
||||||
NODE_INSTALL_VERSION=${1:-18.12.1}
|
|
||||||
YARN_INSTALL_VERSION=${2:-1.22.19}
|
|
||||||
|
|
||||||
# Map MAJOR.MINOR.patch -> MAJOR.x
|
# Map MAJOR.MINOR.patch -> MAJOR.x
|
||||||
NODE_MAJOR=`echo $NODE_INSTALL_VERSION | sed -r -e "s/([0-9]+)\.[0-9]+.*/\1\.x/g"`
|
NODE_MAJOR=$(echo "$NODE_INSTALL_VERSION" | sed -r -e "s/([0-9]+)\.[0-9]+.*/\1\.x/g")
|
||||||
|
|
||||||
# add official debian repos for node
|
# add official debian repos for node
|
||||||
curl -sS -L https://deb.nodesource.com/setup_${NODE_MAJOR} | bash -
|
curl -sS -L "https://deb.nodesource.com/setup_${NODE_MAJOR}" | bash -
|
||||||
|
|
||||||
apt-get update
|
apt-get update
|
||||||
|
|
||||||
|
|
@ -18,9 +15,12 @@ curl -s -O "https://deb.nodesource.com/node_$NODE_MAJOR/pool/main/n/nodejs/$NODE
|
||||||
dpkg -i "$NODE_FILE_NAME"
|
dpkg -i "$NODE_FILE_NAME"
|
||||||
rm -f "$NODE_FILE_NAME"
|
rm -f "$NODE_FILE_NAME"
|
||||||
|
|
||||||
npm install --global yarn@${YARN_INSTALL_VERSION}
|
npm install --global "yarn@${YARN_INSTALL_VERSION}"
|
||||||
npm cache clean --force
|
npm cache clean --force
|
||||||
|
|
||||||
apt-get autoremove -yq
|
apt-get autoremove -yq
|
||||||
apt-get clean -yqq
|
apt-get clean -yqq
|
||||||
rm -rf /var/lib/apt/lists/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
node --version
|
||||||
|
yarn --version
|
||||||
|
|
|
||||||
|
|
@ -20,9 +20,7 @@ function build_debian() {
|
||||||
apt-get install -yq --no-install-recommends imagemagick
|
apt-get install -yq --no-install-recommends imagemagick
|
||||||
|
|
||||||
# Install node & yarn
|
# Install node & yarn
|
||||||
NODE_INSTALL_VERSION=16.14.2
|
/scripts/install-node "${NODE_INSTALL_VERSION} ${YARN_INSTALL_VERSION}"
|
||||||
YARN_INSTALL_VERSION=1.22.19
|
|
||||||
/scripts/install-node $NODE_INSTALL_VERSION $YARN_INSTALL_VERSION && node --version && yarn --version
|
|
||||||
|
|
||||||
# Install gitlab-runner
|
# Install gitlab-runner
|
||||||
curl -O -J -L "https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-linux-${TARGETARCH:-amd64}"
|
curl -O -J -L "https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-linux-${TARGETARCH:-amd64}"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue