mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

With the release of alpine 3.17 (2022-11-22), the fts-dev package was renamed to musl-fts-dev. Change it accordingly. This is currently breaking CI in a fork of zeek/zeek. Suspect some caching prevents it from breaking here currently. Alpine 3.16 is still supported till 2024-05-23, but we're essentially not doing CI testing for it anymore. Appears to be in line with the comment in .cirrus.yml
30 lines
548 B
Docker
30 lines
548 B
Docker
FROM alpine:latest
|
|
|
|
# A version field to invalidate Cirrus's build cache when needed, as suggested in
|
|
# https://github.com/cirruslabs/cirrus-ci-docs/issues/544#issuecomment-566066822
|
|
ENV DOCKERFILE_VERSION 20221201
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
bison \
|
|
bsd-compat-headers \
|
|
ccache \
|
|
cmake \
|
|
curl \
|
|
flex-dev \
|
|
musl-fts-dev \
|
|
g++ \
|
|
git \
|
|
libpcap-dev \
|
|
linux-headers \
|
|
make \
|
|
openssh-client \
|
|
openssl-dev \
|
|
procps \
|
|
py3-pip \
|
|
python3 \
|
|
python3-dev \
|
|
swig \
|
|
zlib-dev
|
|
|
|
RUN pip3 install websockets junit2html
|