mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 18:12:55 +01:00
Add Ruby 3.2 version of www-gitlab-com Docker image
This commit is contained in:
parent
1f51a02893
commit
b5cc37433d
4 changed files with 28 additions and 3 deletions
23
Dockerfile.www-gitlab-com-debian-bullseye-ruby-3.2-node-18
Normal file
23
Dockerfile.www-gitlab-com-debian-bullseye-ruby-3.2-node-18
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
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/
|
||||
RUN NODE_INSTALL_VERSION=18.14.2 /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
|
||||
Loading…
Add table
Add a link
Reference in a new issue