-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
33 lines (29 loc) · 751 Bytes
/
Dockerfile
File metadata and controls
33 lines (29 loc) · 751 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
FROM ubuntu:16.04
RUN \
DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get install -y \
build-essential \
apt-utils \
ssl-cert \
apache2 \
apache2-utils \
libapache2-mod-perl2 \
libcgi-pm-perl \
liblocal-lib-perl \
cpanminus \
libexpat1-dev \
libutf8-all-perl \
libjson-perl \
zip && \
a2enmod cgid && \
a2enmod rewrite && \
a2dissite 000-default && \
apt-get update -y && \
apt-get upgrade -y && \
apt-get -y clean
COPY localhost.conf /etc/apache2/sites-enabled/localhost.conf
COPY marvel_developer.conf /etc/marvel_developer.conf
VOLUME ["/usr/local/sbin"]
VOLUME ["/var/www/html"]
EXPOSE 80