-
Erick Hitter authored
These were included in a misguided attempt to fix the nginx build process, which was failing due to OpenSSL not supporting parallel make jobs.
Erick Hitter authoredThese were included in a misguided attempt to fix the nginx build process, which was failing due to OpenSSL not supporting parallel make jobs.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Dockerfile 583 B
FROM debian:stretch
LABEL maintainer="ethitter"
LABEL version="1.0"
RUN echo "deb http://security.debian.org/ stretch/updates main" >> /etc/apt/sources.list
RUN apt-get update \
&& apt-get -y --no-install-recommends install \
apt-transport-https \
lsb-release \
ca-certificates \
curl \
git \
dh-make \
build-essential \
autoconf \
autotools-dev \
libpcre3 \
libpcre3-dev \
libz-dev \
gnupg \
libssl-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*