Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Dockerfile « versioned « build-images « _support - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 097dbb2587087614d49f5c6c5587483c465f1f88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
ARG CUSTOM_IMAGE_VERSION
FROM registry.gitlab.com/gitlab-org/gitlab-build-images:${CUSTOM_IMAGE_VERSION}

RUN mkdir -p /bundle-cache

RUN echo $(ls -la)

COPY ./Gemfile /bundle-cache
COPY ./Gemfile.lock /bundle-cache

RUN DEBIAN_FRONTEND=noninteractive apt-get update -qq && \
    DEBIAN_FRONTEND=noninteractive apt-get install -qq -y rubygems bundler cmake build-essential libicu-dev && \
    cd /bundle-cache && bundle install --path vendor/bundle