Skip to content

Commit 6d06ef9

Browse files
author
Julien Neuhart
committed
fixing missing install for apache2..
1 parent 6dde0f5 commit 6d06ef9

File tree

4 files changed

+40
-0
lines changed

4 files changed

+40
-0
lines changed

Dockerfile.10-apache

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,16 @@ RUN SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.
4848
# | Installs Apache.
4949
# |
5050

51+
RUN apt-get update \
52+
&& apt-get install -y --no-install-recommends \
53+
apache2 \
54+
&& rm -rf /var/lib/apt/lists/*
55+
56+
ENV APACHE_CONFDIR /etc/apache2
57+
ENV APACHE_ENVVARS $APACHE_CONFDIR/envvars
58+
59+
RUN set -ex \
60+
\
5161
# generically convert lines like
5262
# export APACHE_RUN_USER=www-data
5363
# into

Dockerfile.6-apache

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,16 @@ RUN SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.
4848
# | Installs Apache.
4949
# |
5050

51+
RUN apt-get update \
52+
&& apt-get install -y --no-install-recommends \
53+
apache2 \
54+
&& rm -rf /var/lib/apt/lists/*
55+
56+
ENV APACHE_CONFDIR /etc/apache2
57+
ENV APACHE_ENVVARS $APACHE_CONFDIR/envvars
58+
59+
RUN set -ex \
60+
\
5161
# generically convert lines like
5262
# export APACHE_RUN_USER=www-data
5363
# into

Dockerfile.8-apache

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,16 @@ RUN SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.
4848
# | Installs Apache.
4949
# |
5050

51+
RUN apt-get update \
52+
&& apt-get install -y --no-install-recommends \
53+
apache2 \
54+
&& rm -rf /var/lib/apt/lists/*
55+
56+
ENV APACHE_CONFDIR /etc/apache2
57+
ENV APACHE_ENVVARS $APACHE_CONFDIR/envvars
58+
59+
RUN set -ex \
60+
\
5161
# generically convert lines like
5262
# export APACHE_RUN_USER=www-data
5363
# into

utils/Dockerfile.blueprint

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,16 @@ RUN SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.
5151
# | Installs Apache.
5252
# |
5353

54+
RUN apt-get update \
55+
&& apt-get install -y --no-install-recommends \
56+
apache2 \
57+
&& rm -rf /var/lib/apt/lists/*
58+
59+
ENV APACHE_CONFDIR /etc/apache2
60+
ENV APACHE_ENVVARS $APACHE_CONFDIR/envvars
61+
62+
RUN set -ex \
63+
\
5464
# generically convert lines like
5565
# export APACHE_RUN_USER=www-data
5666
# into

0 commit comments

Comments
 (0)