mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-31 01:24:19 +02:00
First, the icinga_legacytimeperiod/dst test was excluded, as it fails on Alpine most likely due to some differences between musl and glibc. After some debugging, I disabled the test as the Alpine packages does. More build dependencies were added from the Alpine package, allowing to only disable MySQL and PostgreSQL support as these libraries have fixed dependencies on OpenSSL, conflicting with LibreSSL. In addition, I have added comments where I was first puzzled.
9 lines
307 B
Docker
9 lines
307 B
Docker
# This Dockerfile is used in the linux job for Alpine Linux.
|
|
#
|
|
# As the linux.bash script is, in fact, a bash script and Alpine does not ship
|
|
# a bash by default, the "alpine:bash" container will be built using this
|
|
# Dockerfile in the GitHub Action.
|
|
|
|
FROM alpine:3
|
|
RUN ["apk", "--no-cache", "add", "bash"]
|