Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to libpcre2 #219

Merged
merged 9 commits into from
Feb 18, 2023
Next Next commit
Provide libpcre2 in docker images
straight-shoota committed Jan 18, 2023
commit 13003b792887f853d32ce01469f2bc181ca89f98
2 changes: 1 addition & 1 deletion docker/alpine.Dockerfile
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ FROM alpine:3.16 as runtime
RUN \
apk add --update --no-cache --force-overwrite \
# core dependencies
gcc gmp-dev libevent-static musl-dev pcre-dev \
gcc gmp-dev libevent-static musl-dev pcre2-dev \
# stdlib dependencies
libxml2-dev openssl-dev openssl-libs-static tzdata yaml-static zlib-static \
# dev tools
2 changes: 1 addition & 1 deletion docker/ubuntu.Dockerfile
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ RUN \
apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get install -y tzdata gcc pkg-config libssl-dev libxml2-dev libyaml-dev libgmp-dev git make \
libpcre3-dev libevent-dev libz-dev && \
libpcre2-dev libevent-dev libz-dev && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

ARG crystal_targz