-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildenvwine.dockerfile
264 lines (197 loc) · 11.2 KB
/
buildenvwine.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
################################################################################
# baseimage
################################################################################
ARG DEBIANBASE
FROM debian:${DEBIANBASE} as buildenvwine
ARG APTCACHER
ARG WINEGRAPE
ARG WINEVERSION
ARG DIRECTINSTALL
ARG INSTALL_VCRUN
ARG INSTALL_VBRUN
ARG INSTALL_DOTNETFRAMEWORK
ARG INSTALL_DOTNETCORE
ARG INSTALL_DOTNETDUMMYAPP
ARG INSTALL_DOTNETEXTRAS
ARG INSTALL_WINDOWSPOWERSHELL
ARG INSTALL_POWERSHELL
ARG INSTALL_MSBUILDTOOLS
ARG INSTALL_MSYS2
ARG INSTALL_PYTHON3
ARG INSTALL_PIP
ARG CUSTOMREPOSITORY_IDENTIFIER
ARG CUSTOMREPOSITORY_SERVER
ARG CUSTOMREPOSITORY_PATH
################################################################################
# settings
################################################################################
RUN printf "${WINEGRAPE}\n"
RUN printf "${WINEVERSION}\n"
RUN printf "${http_proxy}\n"
RUN sh -c "printf \"\$http_proxy\\n\""
RUN printf "${APTCACHER}\n"
RUN http_proxy="${APTCACHER}" sh -c "printf \"\$http_proxy\\n\""
RUN mkdir -p /helpers
COPY --from=containers-tools ./helpers/ /helpers
RUN chmod a+x /helpers/*.sh
RUN mkdir -p /helperscache
COPY --from=containers-tools ./helperscache/ /helperscache
RUN chmod -R a+r /helperscache
RUN chmod a+w /helperscache
################################################################################
# apt basic config
################################################################################
ENV TZ=UTC
ENV DEBIAN_FRONTEND noninteractive
RUN http_proxy="${APTCACHER}" /helpers/apt-tuning.sh
RUN http_proxy="${APTCACHER}" /helpers/apt-upgrade.sh
################################################################################
# well-known blocks
################################################################################
RUN http_proxy="${APTCACHER}" /helpers/setup-no-coredumps.sh
RUN http_proxy="${APTCACHER}" /helpers/apt-retry-install.sh tzdata
RUN http_proxy="${APTCACHER}" /helpers/apt-retry-install.sh ca-certificates
RUN http_proxy="${APTCACHER}" /helpers/apt-retry-install.sh ssl-cert
#RUN http_proxy="${APTCACHER}" /helpers/remove-snakeoil.sh
RUN http_proxy="${APTCACHER}" /helpers/setup-core.sh
RUN http_proxy="${APTCACHER}" /helpers/setup-mc.sh
RUN http_proxy="${APTCACHER}" /helpers/setup-locales.sh
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
RUN http_proxy="${APTCACHER}" /helpers/setup-fonts-base.sh
RUN mkdir -p /root/mscorefonts
COPY --from=containers-tools ./mscorefonts/ /root/mscorefonts
RUN if [ "${INSTALL_MSCOREFONTS}" = "yes" ] ; then http_proxy="${APTCACHER}" /helpers/setup-fonts-microsoft.sh ; fi
RUN rm -R -f /root/mscorefonts
################################################################################
# sysbench
################################################################################
RUN http_proxy="${APTCACHER}" /helpers/setup-sysbench.sh
################################################################################
# X
################################################################################
RUN http_proxy="${APTCACHER}" /helpers/setup-x.sh
################################################################################
# WINE
################################################################################
COPY --from=containers-tools ./winecache/gecko/ /usr/share/wine/gecko/
COPY --from=containers-tools ./winecache/mono/ /usr/share/wine/mono/
RUN http_proxy="${APTCACHER}" /helpers/setup-wine.sh "${WINEGRAPE}" "${WINEVERSION}"
RUN http_proxy="${APTCACHER}" /helpers/setup-verisign.sh
################################################################################
# WINEPREFIX
################################################################################
RUN adduser wineuser --quiet --disabled-login --home /home/wineuser --gecos ,,,
RUN mkdir -p /wineprefix
RUN chown -R wineuser:wineuser /wineprefix
WORKDIR /home/wineuser
USER wineuser
#ENV WINEDEBUG="fixme-all"
#ENV WINEDEBUG="+loaddll"
ENV WINEPREFIX="/wineprefix"
#ENV WINEARCH="win64"
#ENV WINEDLLOVERRIDES="mscoree=n;mshtml=n"
#ENV LC_ALL="C"
ENV DBUS_FATAL_WARNINGS="0"
ENV WINEDLLOVERRIDES=""
ENV WINETRICKS_SUPER_QUIET="1"
ENV WINETRICKS_DOWNLOADER="curl"
RUN /helpers/wine-boot.sh
################################################################################
# vc redist
################################################################################
COPY --from=containers-tools --chown=wineuser:wineuser ./winetricks/vcrun2008/ ./.cache/winetricks/vcrun2008/
COPY --from=containers-tools --chown=wineuser:wineuser ./winetricks/vcrun2019/ ./.cache/winetricks/vcrun2019/
RUN if [ "${INSTALL_VCRUN}" = "yes" ] ; then /helpers/wine-vcredist.sh "${DIRECTINSTALL}" ; fi
RUN rm -R -f ./.cache/winetricks/vcrun2008/
RUN rm -R -f ./.cache/winetricks/vcrun2019/
################################################################################
# vb redist
################################################################################
COPY --from=containers-tools --chown=wineuser:wineuser ./winetricks/vb6run/ ./.cache/winetricks/vb6run/
RUN if [ "${INSTALL_VBRUN}" = "yes" ] ; then /helpers/wine-vbredist.sh "${DIRECTINSTALL}" ; fi
RUN rm -R -f ./.cache/winetricks/vb6run/
################################################################################
# dotnet framework
################################################################################
COPY --from=containers-tools --chown=wineuser:wineuser ./winetricks/dotnet20sp2/ /home/wineuser/.cache/winetricks/dotnet20sp2/
COPY --from=containers-tools --chown=wineuser:wineuser ./winetricks/dotnet35sp1/ /home/wineuser/.cache/winetricks/dotnet35sp1/
COPY --from=containers-tools --chown=wineuser:wineuser ./winetricks/dotnet40/ /home/wineuser/.cache/winetricks/dotnet40/
COPY --from=containers-tools --chown=wineuser:wineuser ./winetricks/dotnet452/ /home/wineuser/.cache/winetricks/dotnet452/
COPY --from=containers-tools --chown=wineuser:wineuser ./winetricks/dotnet462/ /home/wineuser/.cache/winetricks/dotnet462/
COPY --from=containers-tools --chown=wineuser:wineuser ./winetricks/dotnet472/ /home/wineuser/.cache/winetricks/dotnet472/
COPY --from=containers-tools --chown=wineuser:wineuser ./winetricks/dotnet48/ /home/wineuser/.cache/winetricks/dotnet48/
RUN if [ "${INSTALL_DOTNETFRAMEWORK}" = "yes" ] ; then /helpers/wine-dotnetframework.sh "${DIRECTINSTALL}" ; fi
RUN rm -R -f /home/wineuser/.cache/winetricks/dotnet20sp2/
RUN rm -R -f /home/wineuser/.cache/winetricks/dotnet35sp1/
RUN rm -R -f /home/wineuser/.cache/winetricks/dotnet40/
RUN rm -R -f /home/wineuser/.cache/winetricks/dotnet452/
RUN rm -R -f /home/wineuser/.cache/winetricks/dotnet462/
RUN rm -R -f /home/wineuser/.cache/winetricks/dotnet472/
RUN rm -R -f /home/wineuser/.cache/winetricks/dotnet48/
################################################################################
# windows powershell
################################################################################
COPY --from=containers-tools --chown=wineuser:wineuser ./winetricks/powershell10/ /home/wineuser/.cache/winetricks/powershell10/
COPY --from=containers-tools --chown=wineuser:wineuser ./winetricks/powershell20/ /home/wineuser/.cache/winetricks/powershell20/
RUN if [ "${INSTALL_WINDOWSPOWERSHELL}" = "yes" ] ; then /helpers/wine-windowspowershell.sh "${DIRECTINSTALL}" ; fi
RUN rm -R -f /home/wineuser/.cache/winetricks/powershell10/
RUN rm -R -f /home/wineuser/.cache/winetricks/powershell20/
################################################################################
# python3 on wine
################################################################################
COPY --from=containers-tools --chown=wineuser:wineuser ./pythoncache/ /home/wineuser/.cache/pythoncache/
RUN if [ "${INSTALL_PYTHON3}" = "yes" ] ; then /helpers/wine-python3.sh "${DIRECTINSTALL}" ; fi
RUN rm -R -f /home/wineuser/.cache/pythoncache/
################################################################################
# .NET CORE SDK
################################################################################
RUN if [ "${INSTALL_DOTNETCORE}" = "yes" ] ; then /helpers/wine-dotnetsdk.sh "${DIRECTINSTALL}" ; fi
#RUN if [ "${INSTALL_DOTNETCORE}" = "yes" ] ; then /helpers/wine-dotnetruntime.sh "${DIRECTINSTALL}" ; fi
#RUN if [ "${INSTALL_DOTNETCORE}" = "yes" ] ; then /helpers/wine-dotnetasp.sh "${DIRECTINSTALL}" ; fi
RUN if [ "${INSTALL_DOTNETCORE}" = "yes" ] ; then /helpers/wine-dotnetdebugger.sh "${DIRECTINSTALL}" ; fi
################################################################################
# dotnet-extras
################################################################################
RUN if [ "${INSTALL_DOTNETEXTRAS}" = "yes" ] ; then script -e -q -c /helpers/wine-dotnetextras.sh /dev/null ; fi
################################################################################
# dotnet-dummyapp
################################################################################
RUN if [ "${INSTALL_DOTNETDUMMYAPP}" = "yes" ] ; then script -e -q -c /helpers/wine-dotnet-dummyapp.sh /dev/null ; fi
################################################################################
# powershell 7.4
################################################################################
RUN if [ "${INSTALL_POWERSHELL}" = "yes" ] ; then /helpers/wine-powershell.sh "${DIRECTINSTALL}" ; fi
################################################################################
# MS build tools
################################################################################
RUN if [ "${INSTALL_MSBUILDTOOLS}" = "yes" ] ; then /helpers/wine-msbuildtools.sh "${DIRECTINSTALL}" ; fi
################################################################################
# msys2
################################################################################
RUN if [ "${INSTALL_MSYS2}" = "yes" ] ; then /helpers/wine-msys2.sh "${DIRECTINSTALL}" ; fi
################################################################################
# PIP packages
################################################################################
RUN if [ "${INSTALL_PIP}" = "yes" ] ; then /helpers/wine-pip.sh "${DIRECTINSTALL}" ; fi
################################################################################
# final checks
################################################################################
RUN /helpers/wine-checks.sh
################################################################################
# back to root
################################################################################
USER root
################################################################################
# install cleanup
################################################################################
RUN /helpers/apt-cleanup.sh
RUN /helpers/remove-helperscache.sh
################################################################################
# extra settings
################################################################################
# entrypoint regenerating snakeoil
RUN adduser jenkins --quiet --disabled-login --home /home/jenkins --gecos ,,,
USER jenkins
################################################################################