This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
worker_processes auto; | |
worker_rlimit_core 500M; | |
events { | |
accept_mutex off; | |
worker_connections 1024; | |
multi_accept on; | |
use epoll; | |
} | |
http { | |
# MIME |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:18.04 as modsecurity-build | |
LABEL maintainer="Vijay <[email protected]>" | |
# Install Prereqs | |
ENV DEBIAN_FRONTEND noninteractive | |
RUN apt-get update -qq && \ | |
apt install -qq -y --no-install-recommends --no-install-suggests \ | |
ca-certificates \ | |
automake \ | |
autoconf \ |