-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathDockerfile-threaded-bookworm
More file actions
461 lines (391 loc) · 17.7 KB
/
Dockerfile-threaded-bookworm
File metadata and controls
461 lines (391 loc) · 17.7 KB
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
# syntax=docker/dockerfile:1@sha256:2780b5c3bab67f1f76c781860de469442999ed1a0d7992a5efdf2cffc0e3d769
#
# base layer with perl and some general preparations
#
FROM perl:5.38.5-slim-threaded-bookworm@sha256:3fad0850605e1fd39b4d8f43e7c06e80a381e35b7d47dbc6fe9d6c10e851b7a1 AS base
ARG TARGETPLATFORM
ENV LANG=en_US.UTF-8 \
LANGUAGE=en_US:en \
LC_ADDRESS=de_DE.UTF-8 \
LC_MEASUREMENT=de_DE.UTF-8 \
LC_MESSAGES=en_DK.UTF-8 \
LC_MONETARY=de_DE.UTF-8 \
LC_NAME=de_DE.UTF-8 \
LC_NUMERIC=de_DE.UTF-8 \
LC_PAPER=de_DE.UTF-8 \
LC_TELEPHONE=de_DE.UTF-8 \
LC_TIME=de_DE.UTF-8 \
TERM=xterm \
TZ=Europe/Berlin
RUN <<EOF
set -x;
sed -i 's/^Components: main$/& contrib non-free/' /etc/apt/sources.list.d/debian.sources
LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get update
LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get install -qqy --no-install-recommends \
ca-certificates \
gnupg \
locales
LC_ALL=C c_rehash
LC_ALL=C DEBIAN_FRONTEND=noninteractive dpkg-reconfigure locales
echo 'de_DE@euro ISO-8859-15\nde_DE ISO-8859-1\nde_DE.UTF-8 UTF-8\nen_DK ISO-8859-1\nen_DK.ISO-8859-15 ISO-8859-15\nen_DK.UTF-8 UTF-8\nen_GB ISO-8859-1\nen_GB.ISO-8859-15 ISO-8859-15\nen_GB.UTF-8 UTF-8\nen_IE ISO-8859-1\nen_IE.ISO-8859-15 ISO-8859-15\nen_IE.UTF-8 UTF-8\nen_US ISO-8859-1\nen_US.ISO-8859-15 ISO-8859-15\nen_US.UTF-8 UTF-8\nes_ES@euro ISO-8859-15\nes_ES ISO-8859-1\nes_ES.UTF-8 UTF-8\nfr_FR@euro ISO-8859-15\nfr_FR ISO-8859-1\nfr_FR.UTF-8 UTF-8\nit_IT@euro ISO-8859-15\nit_IT ISO-8859-1\nit_IT.UTF-8 UTF-8\nnl_NL@euro ISO-8859-15\nnl_NL ISO-8859-1\nnl_NL.UTF-8 UTF-8\npl_PL ISO-8859-2\npl_PL.UTF-8 UTF-8' >/etc/locale.gen
LC_ALL=C locale-gen
ln -sf /usr/share/zoneinfo/Europe/Berlin /etc/localtime
echo "Europe/Berlin" > /etc/timezone
LC_ALL=C DEBIAN_FRONTEND=noninteractive dpkg-reconfigure tzdata
LC_ALL=C apt-get autoremove -qqy && LC_ALL=C apt-get clean
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* ~/.[!.] ~/.??* ~/*
EOF
#
# Install all CPAN Modules, needed from FHEM and standard modules
#
FROM perl:5.38.5-threaded-bookworm@sha256:9fabcdba828b77c4a705b4494aafb715190e814aed6d0cd1ac7936a41cad5976 AS build-cpan
ARG TARGETPLATFORM
ARG TARGETARCH
ARG TARGETVARIANT
ARG CPAN_CPM_CACHE_ID=perl-cpm-default
ARG CPAN_CPM_VERSION=v1.0.1
ARG CPAN_CPM_MIRROR=https://www.cpan.org
COPY cpanfile /usr/src/app/core/cpanfile
COPY scripts/export-installed-modules.pl /usr/local/bin/export-installed-modules.pl
COPY scripts/verify-cpan-requirements.pl /usr/local/bin/verify-cpan-requirements.pl
# Install Packages used for building cpan modules:
RUN <<EOF
set -ex;
LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get update
LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get install -qqy --no-install-recommends \
libusb-dev \
libgd-dev \
libfann-dev \
pkg-config \
libotr5-dev \
graphviz \
python3-dev
cpanm --notest "https://cpan.metacpan.org/authors/id/S/SK/SKAJI/App-cpm-${CPAN_CPM_VERSION}.tar.gz"
cpm --version
cpm --version | grep -F "cpm ${CPAN_CPM_VERSION}"
cat <<'SCRIPT' > /usr/local/bin/imlib2-config
#!/bin/sh
exec pkg-config imlib2 "$@"
SCRIPT
chmod +x /usr/local/bin/imlib2-config
cat <<'SCRIPT' > /usr/local/bin/cpm-install-with-retry
#!/bin/sh
log_file=$1
shift
attempt=1
attempts=${CPAN_CPM_RETRIES:-3}
delay=${CPAN_CPM_RETRY_DELAY:-30}
status=0
: > "$log_file"
while [ "$attempt" -le "$attempts" ]; do
printf 'cpm install attempt %s/%s\n' "$attempt" "$attempts" >> "$log_file"
"$@" >> "$log_file" 2>&1 && exit 0
status=$?
printf 'cpm install attempt %s/%s failed with exit code %s\n' "$attempt" "$attempts" "$status" >> "$log_file"
if [ "$attempt" -lt "$attempts" ]; then
printf 'retrying cpm install in %s seconds\n' "$delay" >> "$log_file"
sleep "$delay"
fi
attempt=$((attempt + 1))
done
exit "$status"
SCRIPT
chmod +x /usr/local/bin/cpm-install-with-retry
LC_ALL=C apt-get autoremove -qqy && LC_ALL=C apt-get clean
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* ~/.[!.]* ~/.??*
EOF
#
# Fixup modules which do not work on all platforms and install afterwards
# Install Modules from CPAN
#
# JSON::XS isn't marked AS compatible with Perl 5.36, we prevent some output
ENV PERL_CANARY_STABILITY_NOPROMPT=1 \
PERL_CPM_PREBUILT=1
RUN --mount=type=cache,target=/root/.perl-cpm,id=${CPAN_CPM_CACHE_ID}-${TARGETARCH}${TARGETVARIANT},sharing=locked <<EOF
set -x;
mkdir -p /usr/src/app/cpan-inventory /usr/src/app/cpan-logs /usr/src/app/cpan-verify/core /usr/src/app/cpan-verify/3rdparty /usr/src/app/cpan-verify/all;
if [ "${TARGETPLATFORM}" != "linux/amd64" ] && [ "${TARGETPLATFORM}" != "linux/386" ]; then
sed -i '/Device::Firmata::Constants/d' /usr/src/app/core/cpanfile
fi
# Math::Pari emits 64-bit-only assembler on linux/386, Crypt::Random depends on it there.
if [ "${TARGETPLATFORM}" = "linux/386" ]; then
sed -i '/Math::Pari/d' /usr/src/app/core/cpanfile
sed -i '/Crypt::Random/d' /usr/src/app/core/cpanfile
fi
# HiPi pulls in Image::Imlib2 and currently only builds reliably on amd64.
if [ "${TARGETPLATFORM}" != "linux/amd64" ]; then
sed -i '/HiPi/d' /usr/src/app/core/cpanfile
fi
cpm_workers=1
core_status=0
cpm-install-with-retry /usr/src/app/cpan-logs/core-install.log cpm install --mirror=${CPAN_CPM_MIRROR} --without-test --with-suggests --with-recommends --cpanfile /usr/src/app/core/cpanfile --show-build-log-on-failure --configure-timeout=360 --build-timeout=7200 --workers=$cpm_workers --local-lib-contained core/ || core_status=$?
cat /usr/src/app/cpan-logs/core-install.log
printf 'exit_code=%s\n' "$core_status" > /usr/src/app/cpan-verify/core/core-install-status.txt
perl /usr/local/bin/export-installed-modules.pl --lib /usr/src/app/core/lib/perl5 --output-dir /usr/src/app/cpan-inventory/core --label core
rm -rf /root/.cpanm
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
EOF
# Install Packages used for building 3rdparty cpan modules:
RUN <<EOF
set -x;
LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get update
LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get install -qqy --no-install-recommends \
libbluetooth-dev \
libi2c-dev \
libgd-dev \
libdbus-1-dev \
libimlib2-dev \
libsodium-dev \
libsnmp-dev
LC_ALL=C apt-get autoremove -qqy && LC_ALL=C apt-get clean
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* ~/.[!.]* ~/.??*
EOF
# Install all CPAN Modules, needed from 3rd party module repositorys
COPY 3rdParty/cpanfile /usr/src/app/3rdparty/cpanfile
# Fixup modules which do not work on all platforms and install afterwards
RUN --mount=type=cache,target=/root/.perl-cpm,id=${CPAN_CPM_CACHE_ID}-${TARGETARCH}${TARGETVARIANT},sharing=locked <<EOF
set -x;
if [ "${TARGETPLATFORM}" != "linux/amd64" ] && [ "${TARGETPLATFORM}" != "linux/386" ]; then
sed -i '/Device::Firmata::Constants/d' /usr/src/app/3rdparty/cpanfile
fi
# SNMP's CPAN module version must match the system Net-SNMP library. It is not
# usable on linux/386 and linux/arm64 with Debian bookworm's libsnmp-dev version.
if [ "${TARGETPLATFORM}" = "linux/arm/v7" ] || [ "${TARGETPLATFORM}" = "linux/386" ] || [ "${TARGETPLATFORM}" = "linux/arm64" ]; then
sed -i '/SNMP/d' /usr/src/app/3rdparty/cpanfile
fi
cpm_workers=1
thirdparty_status=0
cpm-install-with-retry /usr/src/app/cpan-logs/3rdparty-install.log cpm install --mirror=${CPAN_CPM_MIRROR} --cpanfile /usr/src/app/3rdparty/cpanfile --without-test --with-recommends --with-suggests --show-build-log-on-failure --configure-timeout=360 --build-timeout=7200 --workers=$cpm_workers --local-lib-contained 3rdparty/ || thirdparty_status=$?
cat /usr/src/app/cpan-logs/3rdparty-install.log
printf 'exit_code=%s\n' "$thirdparty_status" > /usr/src/app/cpan-verify/3rdparty/3rdparty-install-status.txt
perl /usr/local/bin/export-installed-modules.pl --lib /usr/src/app/3rdparty/lib/perl5 --output-dir /usr/src/app/cpan-inventory/3rdparty --label 3rdparty
perl /usr/local/bin/export-installed-modules.pl --lib /usr/src/app/core/lib/perl5 --lib /usr/src/app/3rdparty/lib/perl5 --output-dir /usr/src/app/cpan-inventory/all --label all
perl /usr/local/bin/verify-cpan-requirements.pl --cpanfile /usr/src/app/core/cpanfile --log /usr/src/app/cpan-logs/core-install.log --lib /usr/src/app/core/lib/perl5 --output-dir /usr/src/app/cpan-verify/core --label core
perl /usr/local/bin/verify-cpan-requirements.pl --cpanfile /usr/src/app/3rdparty/cpanfile --log /usr/src/app/cpan-logs/core-install.log --log /usr/src/app/cpan-logs/3rdparty-install.log --lib /usr/src/app/core/lib/perl5 --lib /usr/src/app/3rdparty/lib/perl5 --output-dir /usr/src/app/cpan-verify/3rdparty --label 3rdparty
perl /usr/local/bin/verify-cpan-requirements.pl --cpanfile /usr/src/app/core/cpanfile --cpanfile /usr/src/app/3rdparty/cpanfile --log /usr/src/app/cpan-logs/core-install.log --log /usr/src/app/cpan-logs/3rdparty-install.log --lib /usr/src/app/core/lib/perl5 --lib /usr/src/app/3rdparty/lib/perl5 --output-dir /usr/src/app/cpan-verify/all --label all
core_status=$(sed -n 's/^exit_code=//p' /usr/src/app/cpan-verify/core/core-install-status.txt | tail -n 1)
core_status=${core_status:-0}
printf 'core_exit_code=%s\n3rdparty_exit_code=%s\n' "$core_status" "$thirdparty_status" > /usr/src/app/cpan-verify/all/install-status.txt
rm -rf /root/.cpanm
EOF
FROM base AS base-cpan
RUN <<EOF
# android-libadb \
set -x;
LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get update
LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get install -qqy --no-install-recommends \
adb \
avahi-daemon \
avrdude \
bluez \
curl \
dnsutils \
etherwake \
fonts-liberation \
i2c-tools \
inetutils-ping \
jq \
libcap-ng-utils \
libcap2-bin \
lsb-release \
mariadb-client \
net-tools \
netcat-traditional \
openssh-client \
procps \
sendemail \
sqlite3 \
subversion \
sudo \
telnet \
unzip \
usbutils \
wget \
libarchive-dev \
bash \
libgd3 \
librsvg2-2 \
iproute2 \
libpq5
LC_ALL=C apt-get autoremove -qqy && LC_ALL=C apt-get clean
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* ~/.[!.] ~/.??* ~/*
EOF
COPY --from=build-cpan /usr/src/app/core/lib/perl5 /usr/src/app/core/lib/perl5
#
# Standard FHEM Layer
#
FROM base-cpan AS with-fhem
ENV PERL5LIB=/usr/src/app/core/lib/perl5
# Install base environment and FHEM Docker module
COPY src/entry.sh src/health-check.sh src/ssh_known_hosts.txt /
COPY src/FHEM/99_DockerImageInfo.pm /fhem/FHEM/
# FHEM specific ENVs
ENV LOGFILE=./log/fhem-%Y-%m-%d.log \
TELNETPORT=7072 \
FHEM_UID=6061 \
FHEM_GID=6061 \
FHEM_PERM_DIR=0750 \
FHEM_PERM_FILE=0640 \
UMASK=0037 \
BLUETOOTH_GID=6001 \
GPIO_GID=6002 \
I2C_GID=6003 \
TIMEOUT=10 \
CONFIGTYPE=fhem.cfg
# Moved AGS to the end, because it changes every run and invalidates the cache for all following steps https://github.com/moby/moby/issues/20136
# Arguments to instantiate AS variables
ARG PLATFORM="linux"
ARG TAG=""
ARG IMAGE_VCS_REF=""
ARG IMAGE_VERSION=""
ARG BUILD_DATE=""
# Re-usable variables during build
ARG L_AUTHORS=""
ARG L_URL="https://hub.docker.com/r/fhem/fhem-${TARGETPLATFORM}"
ARG L_USAGE="https://github.com/fhem/fhem-docker/blob/${IMAGE_VCS_REF}/README.md"
ARG L_VCS_URL="https://github.com/fhem/fhem-docker/"
ARG L_VENDOR="FHEM"
ARG L_LICENSES="MIT"
ARG L_TITLE="fhem-${TARGETPLATFORM}"
ARG L_DESCR="A basic Docker image for FHEM house automation system, based on Debian bookworm Perl image."
ARG L_AUTHORS_FHEM="https://fhem.de/MAINTAINER.txt"
ARG L_URL_FHEM="https://fhem.de/"
ARG L_USAGE_FHEM="https://fhem.de/#Documentation"
ARG L_VCS_URL_FHEM="https://svn.fhem.de/"
ARG L_VENDOR_FHEM="FHEM e.V."
ARG L_LICENSES_FHEM="GPL-2.0"
ARG L_DESCR_FHEM="FHEM (TM) is a GPL'd perl server for house automation. It is used to automate some common tasks in the household like switching lamps / shutters / heating / etc. and to log events like temperature / humidity / power consumption."
# non-standard labels
LABEL org.fhem.authors=${L_AUTHORS_FHEM}
LABEL org.fhem.url=${L_URL_FHEM}
LABEL org.fhem.documentation=${L_USAGE_FHEM}
LABEL org.fhem.source=${L_VCS_URL_FHEM}
LABEL org.fhem.vendor=${L_VENDOR_FHEM}
LABEL org.fhem.licenses=${L_LICENSES_FHEM}
LABEL org.fhem.description=${L_DESCR_FHEM}
# annotation labels according to
# https://github.com/opencontainers/image-spec/blob/v1.0.1/annotations.md#pre-defined-annotation-keys
LABEL org.opencontainers.image.created=${BUILD_DATE}
LABEL org.opencontainers.image.authors=${L_AUTHORS}
LABEL org.opencontainers.image.url=${L_URL}
LABEL org.opencontainers.image.documentation=${L_USAGE}
LABEL org.opencontainers.image.source=${L_VCS_URL}
LABEL org.opencontainers.image.version=${IMAGE_VERSION}
LABEL org.opencontainers.image.revision=${IMAGE_VCS_REF}
LABEL org.opencontainers.image.vendor=${L_VENDOR}
LABEL org.opencontainers.image.licenses=${L_LICENSES}
LABEL org.opencontainers.image.title=${L_TITLE}
LABEL org.opencontainers.image.description=${L_DESCR}
RUN chmod 755 /*.sh /usr/local/bin/* \
&& echo "org.opencontainers.image.created=${BUILD_DATE}\norg.opencontainers.image.authors=${L_AUTHORS}\norg.opencontainers.image.url=${L_URL}\norg.opencontainers.image.documentation=${L_USAGE}\norg.opencontainers.image.source=${L_VCS_URL}\norg.opencontainers.image.version=${IMAGE_VERSION}\norg.opencontainers.image.revision=${IMAGE_VCS_REF}\norg.opencontainers.image.vendor=${L_VENDOR}\norg.opencontainers.image.licenses=${L_LICENSES}\norg.opencontainers.image.title=${L_TITLE}\norg.opencontainers.image.description=${L_DESCR}\norg.fhem.authors=${L_AUTHORS_FHEM}\norg.fhem.url=${L_URL_FHEM}\norg.fhem.documentation=${L_USAGE_FHEM}\norg.fhem.source=${L_VCS_URL_FHEM}\norg.fhem.version=${FHEM_VERSION}\norg.fhem.vendor=${L_VENDOR_FHEM}\norg.fhem.licenses=${L_LICENSES_FHEM}\norg.fhem.description=${L_DESCR_FHEM}" > /image_info
VOLUME [ "/opt/fhem" ]
EXPOSE 8083
HEALTHCHECK --interval=20s --timeout=10s --start-period=60s --retries=5 CMD /health-check.sh
WORKDIR "/opt/fhem"
ENTRYPOINT [ "/entry.sh" ]
CMD [ "start" ]
#
# Add additional Perl and System layers
#
FROM with-fhem AS with-fhem-extended
ENV PERL5LIB=${PERL5LIB}:/usr/src/app/3rdparty/lib/perl5
# Add extended system layer
RUN <<EOF
set -x;
LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get update
LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get install -qqy --no-install-recommends \
libsox-fmt-all \
alsa-utils \
dfu-programmer \
espeak \
ffmpeg \
lame \
libttspico-utils \
mp3wrap \
mpg123 \
mplayer \
normalize-audio \
snmp \
snmp-mibs-downloader \
sox \
vorbis-tools \
gstreamer1.0-tools
LC_ALL=C apt-get autoremove -qqy && LC_ALL=C apt-get clean
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* ~/.[!.] ~/.??* ~/*
EOF
COPY --from=build-cpan /usr/src/app/3rdparty/lib/perl5 /usr/src/app/3rdparty/lib/perl5
#
# Add additional Python layer
#
FROM with-fhem-extended AS with-fhem-extended-python
RUN <<EOF
LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get update
LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get install -qqy --no-install-recommends \
python3 \
python3-dev \
python3-pip \
python3-setuptools \
python3-wheel \
python3-pychromecast \
speedtest-cli \
youtube-dl
ln -s ../../bin/speedtest-cli /usr/local/bin/speedtest-cli
LC_ALL=C apt-get autoremove -qqy && LC_ALL=C apt-get clean
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* ~/.[!.] ~/.??* ~/*
EOF
#
# Add nodejs app layer
#
FROM with-fhem-extended-python AS with-fhem-extended-python-nodejs
ARG IMAGE_LAYER_NODEJS_EXT="0"
RUN <<EOF
# mkdir -p /tmp/keyrings
#curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /tmp/keyrings/nodesource.gpg
#echo "deb [signed-by=/tmp/keyrings/nodesource.gpg] https://deb.nodesource.com/node_18.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list
LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get update
LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get install -qqy --no-install-recommends nodejs
npm install -g npm@latest
if [ "${IMAGE_LAYER_NODEJS_EXT}" != "0" ]; then
npm install -g --unsafe-perm --production \
alexa-cookie2 \
alexa-fhem \
gassistant-fhem \
homebridge \
homebridge-fhem \
tradfri-fhem \
; fi
LC_ALL=C apt-get autoremove -qqy && LC_ALL=C apt-get clean
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* ~/.[!.] ~/.??* ~/* /etc/apt/sources.list.d/nodesource.list
EOF
#
#
# Layer only for bash unit testing
#
#
FROM with-fhem AS with-fhem-bats
ADD https://github.com/bats-core/bats-core.git#v1.10.0 /tmp/bats
RUN <<EOF
/tmp/bats/install.sh /opt/bats
ln -s /opt/bats/bin/bats /usr/local/bin/bats
rm -r /tmp/bats
EOF
ADD https://github.com/bats-core/bats-support.git#v0.3.0 /opt/bats/test_helper/bats-support
ADD https://github.com/bats-core/bats-assert.git#v2.1.0 /opt/bats/test_helper/bats-assert
ADD https://github.com/bats-core/bats-file.git /opt/bats/test_helper/bats-file
ADD https://github.com/grayhemp/bats-mock.git /opt/bats/test_helper/bats-mock
WORKDIR /code/
ENTRYPOINT [ "/usr/local/bin/bats" ]
#
#
# Layer for bash integration testing
#
#
FROM with-fhem-extended-python-nodejs AS with-fhem-bats-extended-python-nodejs
COPY --from=with-fhem-bats /opt/bats /opt/bats/
RUN ln -s /opt/bats/bin/bats /usr/local/bin/bats
WORKDIR /code/
ENTRYPOINT [ "/usr/local/bin/bats" ]
FROM scratch AS cpan-inventory
COPY --from=build-cpan /usr/src/app/cpan-inventory/ /
COPY --from=build-cpan /usr/src/app/cpan-verify/ /verify/
COPY --from=build-cpan /usr/src/app/cpan-logs/ /logs/