-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDockerfile.gitlab
119 lines (97 loc) · 3.9 KB
/
Dockerfile.gitlab
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
113
114
115
116
117
118
119
FROM registry.ddbuild.io/images/mirror/ubuntu:24.04
####################################################################################################
# DEBIAN SETUP
####################################################################################################
ENV DEBIAN_FRONTEND=noninteractive
# Set timezone to UTC by default
RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime
# Make sure APT is up to date
RUN apt-get update
RUN apt-get -y upgrade
RUN set -x && apt-get -y install --no-install-recommends apt-utils
# Install CLI tools
RUN set -x && apt-get -y install --no-install-recommends \
curl \
ca-certificates \
git \
make \
unzip \
zip \
&& apt-get -y clean\
&& rm -rf /var/lib/apt/lists/*
####################################################################################################
# PYTHON
####################################################################################################
# Install Python 3
RUN set -x \
&& apt-get update \
&& apt-get -y upgrade \
&& apt-get -y install --no-install-recommends \
python3 \
python3-apt \
python3-pip \
pipx \
&& apt-get -y clean \
&& rm -rf /var/lib/apt/lists/*
# Install pip for aws
# RUN set -x \
# && curl -OL https://bootstrap.pypa.io/get-pip.py \
# && python3 get-pip.py \
# && rm get-pip.py
RUN python3 --version
# Install aws CLI
RUN set -x && pipx install awscli
####################################################################################################
# JAVA
####################################################################################################
RUN set -x \
&& apt-get update \
&& apt-get -y upgrade \
&& apt-get -y install --no-install-recommends \
openjdk-21-jdk \
&& apt-get -y clean \
&& rm -rf /var/lib/apt/lists/*
RUN java --version
####################################################################################################
# NPM
####################################################################################################
# Install Node
RUN set -x \
&& apt-get update \
&& apt-get -y upgrade \
&& apt-get -y install --no-install-recommends \
nodejs \
npm \
&& apt-get -y clean \
&& rm -rf /var/lib/apt/lists/*
# Check Node and NPM version
RUN node --version
RUN npm --version
# Install NPM global dependencies
RUN npm install -g brighterscript
RUN npm install -g ropm
RUN npm install -g @rokucommunity/bslint
####################################################################################################
# MISC
####################################################################################################
# Woke
ENV WOKE_VERSION "0.6.0"
ENV WOKE_SHA256 "ea5605d4242b93d9586a21878264dd8abcf64ed92f0f6538ea831d9d3215b883"
RUN curl -L https://github.com/get-woke/woke/releases/download/v${WOKE_VERSION}/woke-${WOKE_VERSION}-linux-amd64.tar.gz -o woke-linux-amd64.tar.gz \
&& echo "${WOKE_SHA256} woke-linux-amd64.tar.gz" | sha256sum -c \
&& tar -xf woke-linux-amd64.tar.gz \
&& mv woke-${WOKE_VERSION}-linux-amd64/woke /usr/bin/woke \
&& rm -Rf woke-${WOKE_VERSION}-linux-amd64 woke-${WOKE_VERSION}-linux-amd64.tar.gz
####################################################################################################
# ROKU
####################################################################################################
ENV ROKU_SCA_URL "http://devtools.web.roku.com/static-channel-analysis/sca-cmd.zip"
ENV ROKU_SCA_SHA256 "b4affb79c7924c5dfc10c9f9358d32e5fa279386711c328c067e3819d5278ff8"
RUN curl -L $ROKU_SCA_URL -o sca-cmd.zip \
&& echo "${ROKU_SCA_SHA256} sca-cmd.zip" | sha256sum -c \
&& unzip sca-cmd.zip \
&& mv sca-cmd /usr/bin/roku-sca \
&& rm -Rf sca-cmd sca-cmd.zip
####################################################################################################
# EOF
####################################################################################################