mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-08 17:42:56 +01:00
17 lines
604 B
Docker
17 lines
604 B
Docker
FROM gcr.io/google.com/cloudsdktool/cloud-sdk as gcloud-sdk
|
|
|
|
FROM ruby:3.0.3-slim-buster
|
|
|
|
ADD /scripts/ /scripts/
|
|
RUN /scripts/install-www-gitlab-com
|
|
|
|
# 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 -
|
|
|
|
# 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
|