-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDockerfile
112 lines (99 loc) · 3.5 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# Builder image.
FROM golang:latest AS builder
WORKDIR /app
COPY ./ ./
# Build the binary.
RUN go mod tidy
RUN CGO_ENABLED=0 go build -o eval-dev-quality ./cmd/eval-dev-quality
# Actual running image.
FROM ubuntu:noble
RUN apt-get update && \
apt-get install -y \
--no-install-recommends \
ca-certificates \
gcc \
git \
imagemagick \
libappindicator3-1 \
libasound2-data \
libasound2-plugins \
libatk-bridge2.0-0 \
libatk1.0-0 \
libdrm2 \
libgbm1 \
libgtk-3-0 \
libnss3 \
libssl-dev \
libtool \
libx11-6 \
libx11-xcb1 \
libxcb-dri3-0 \
libxss1 \
libxtst6 \
libyaml-dev \
make \
nodejs \
npm \
pngcrush \
unzip \
wget \
zlib1g-dev \
&& update-ca-certificates
# Install "Chrome for testing" as puppeteer requirement.
RUN wget https://storage.googleapis.com/chrome-for-testing-public/133.0.6943.53/linux64/chrome-linux64.zip -O /tmp/chrome-linux64.zip && \
mkdir -p /opt/chrome && \
unzip /tmp/chrome-linux64.zip -d /opt/chrome && \
rm /tmp/chrome-linux64.zip
ENV PATH="${PATH}:/opt/chrome/chrome-linux64"
# Switch to the ubuntu user as we want it to run as non-root.
USER ubuntu
WORKDIR /app
COPY --chown=ubuntu:ubuntu ./testdata ./testdata
COPY --chown=ubuntu:ubuntu ./Makefile ./Makefile
RUN mkdir -p .eval-dev-quality
RUN mkdir -p /app/evaluation
# Install Ruby.
RUN mkdir -p /tmp/compile
RUN wget https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.4.tar.gz && \
tar -xf ruby-3.3.4.tar.gz -C /tmp/compile/ && \
rm ruby-3.3.4.tar.gz
WORKDIR /tmp/compile/ruby-3.3.4
RUN ./configure --prefix /app/.eval-dev-quality/ruby-3.3.4 --disable-install-doc
RUN make install
WORKDIR /app
RUN rm -rf /tmp/compile
ENV PATH="${PATH}:/app/.eval-dev-quality/ruby-3.3.4/bin"
# Install Maven.
RUN wget https://archive.apache.org/dist/maven/maven-3/3.9.1/binaries/apache-maven-3.9.1-bin.tar.gz && \
tar -xf apache-maven-3.9.1-bin.tar.gz -C /app/.eval-dev-quality/ && \
rm apache-maven-3.9.1-bin.tar.gz
ENV PATH="${PATH}:/app/.eval-dev-quality/apache-maven-3.9.1/bin"
# Install Gradle.
RUN wget https://services.gradle.org/distributions/gradle-8.0.2-bin.zip && \
unzip gradle-8.0.2-bin.zip -d /app/.eval-dev-quality/ && \
rm gradle-8.0.2-bin.zip
ENV PATH="${PATH}:/app/.eval-dev-quality/gradle-8.0.2/bin"
# Install Java.
RUN wget https://corretto.aws/downloads/resources/11.0.24.8.1/amazon-corretto-11.0.24.8.1-linux-x64.tar.gz && \
tar -xf amazon-corretto-11.0.24.8.1-linux-x64.tar.gz -C /app/.eval-dev-quality/ && \
rm amazon-corretto-11.0.24.8.1-linux-x64.tar.gz
ENV JAVA_HOME="/app/.eval-dev-quality/amazon-corretto-11.0.24.8.1-linux-x64"
ENV PATH="${PATH}:${JAVA_HOME}/bin"
# Install Go.
RUN wget https://go.dev/dl/go1.23.6.linux-amd64.tar.gz && \
tar -xf go1.23.6.linux-amd64.tar.gz -C /app/.eval-dev-quality/ && \
rm go1.23.6.linux-amd64.tar.gz
ENV PATH="${PATH}:/app/.eval-dev-quality/go/bin"
ENV GOROOT="/app/.eval-dev-quality/go"
ENV PATH="${PATH}:/home/ubuntu/go/bin"
# Setup NPM global store in User space and install NPM packages.
ENV NPM_CONFIG_PREFIX=/home/ubuntu/.npm-global
ENV PATH="${PATH}:/home/ubuntu/.npm-global/bin"
RUN npm install svgexport -g
# Only use a single process for the puppeteer chrome instance to avoid memory issues in containerized environments.
RUN sed -i "s/args: \[\(.*\)\]/args: [\1, '--single-process']/" /home/ubuntu/.npm-global/lib/node_modules/svgexport/render.js
# Install the binary.
COPY --from=builder --chown=ubuntu:ubuntu /app/eval-dev-quality /app/.eval-dev-quality/bin/
ENV PATH="${PATH}:/app/.eval-dev-quality/bin"
RUN make install-tools-testing
RUN make install-tools /app/.eval-dev-quality/bin