-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.DockerFile
More file actions
37 lines (33 loc) · 842 Bytes
/
build.DockerFile
File metadata and controls
37 lines (33 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
FROM ubuntu:18.04
ENV DEBIAN_FRONTEND noninteractive
LABEL description="An Ubuntu 18.04 image with tools needed for building crwapache plugin."
# SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN \
apt-get update && \
apt-get --yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" \
install \
sudo \
apache2 \
apache2-dev \
apt-transport-https \
autoconf \
automake \
build-essential \
curl \
devscripts \
equivs \
g++ \
gcc \
git \
language-pack-en-base \
libapr1-dev \
libaprutil1-dev \
libcurl4-gnutls-dev \
libsvn-dev \
libsvn1 \
libtool \
libxml2-dev \
locales \
make \
software-properties-common \
tzdata