-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
70 lines (55 loc) · 2.36 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
FROM ubuntu:18.04 AS base
LABEL authors.maintainer "GDK contributors: https://gitlab.com/gitlab-org/gitlab-development-kit/graphs/master"
# Directions when writing this dockerfile:
# Keep least changed directives first. This improves layers caching when rebuilding.
RUN useradd --user-group --create-home gdk
ENV DEBIAN_FRONTEND=noninteractive
# Install packages
COPY packages.txt /
RUN apt-get update && apt-get install -y software-properties-common \
&& add-apt-repository ppa:git-core/ppa -y \
&& apt-get install -y $(sed -e 's/#.*//' /packages.txt)
# Install minio
RUN curl https://dl.min.io/server/minio/release/linux-amd64/minio > /usr/local/bin/minio \
&& chmod +x /usr/local/bin/minio
# stages for fetching remote content
# highly cacheable
FROM alpine AS fetch
RUN apk add --no-cache coreutils curl tar git
FROM fetch AS source-rbenv
ARG RBENV_REVISION=v1.1.1
RUN git clone --branch $RBENV_REVISION --depth 1 https://github.com/rbenv/rbenv
FROM fetch AS source-ruby-build
ARG RUBY_BUILD_REVISION=v20200520
RUN git clone --branch $RUBY_BUILD_REVISION --depth 1 https://github.com/rbenv/ruby-build
FROM fetch AS go
ARG GO_SHA256=2f49eb17ce8b48c680cdb166ffd7389702c0dec6effa090c324804a5cac8a7f8
ARG GO_VERSION=1.14.1
RUN curl --silent --location --output go.tar.gz https://dl.google.com/go/go$GO_VERSION.linux-amd64.tar.gz
RUN echo "$GO_SHA256 go.tar.gz" | sha256sum -c -
RUN tar -C /usr/local -xzf go.tar.gz
FROM node:12-stretch AS nodejs
# contains nodejs and yarn in /usr/local
# https://github.com/nodejs/docker-node/blob/77f1baaa55acc71c9eda1866f0c162b434a63be5/10/jessie/Dockerfile
WORKDIR /stage
RUN install -d usr opt
RUN cp -al /usr/local usr
RUN cp -al /opt/yarn* opt
FROM base AS rbenv
WORKDIR /home/gdk
RUN echo 'export PATH="/home/gdk/.rbenv/bin:$PATH"' >> .bash_profile
RUN echo 'eval "$(rbenv init -)"' >> .bash_profile
COPY --from=source-rbenv --chown=gdk /rbenv .rbenv
COPY --from=source-ruby-build --chown=gdk /ruby-build .rbenv/plugins/ruby-build
USER gdk
RUN bash -l -c "rbenv install 2.6.6 && rbenv global 2.6.6 && gem install bundler -v '= 1.17.3'"
# build final image
FROM base AS release
WORKDIR /home/gdk
ENV PATH $PATH:/usr/local/go/bin
COPY --from=go /usr/local/ /usr/local/
COPY --from=nodejs /stage/ /
COPY --from=rbenv --chown=gdk /home/gdk/ .
USER gdk
# simple tests that tools work
RUN ["bash", "-lec", "yarn --version; node --version; rbenv --version" ]