python3
Last change
on this file since 1019:d45b3d2eeb1d was 1007:445599cd5fea, checked in by István Váradi <ivaradi@…>, 5 years ago |
Files to create a Docker image running the MAVA website
|
File size:
519 bytes
|
Rev | Line | |
---|
[1007] | 1 | FROM ubuntu:18.04
|
---|
| 2 |
|
---|
| 3 | RUN apt-get update -y && \
|
---|
| 4 | /usr/bin/env DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
---|
| 5 | software-properties-common && \
|
---|
| 6 | add-apt-repository -y ppa:ondrej/php && \
|
---|
| 7 | apt-get update -y && \
|
---|
| 8 | /usr/bin/env DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
---|
| 9 | patch \
|
---|
| 10 | mysql-client \
|
---|
| 11 | mysql-server \
|
---|
| 12 | apache2 \
|
---|
| 13 | php5.6 \
|
---|
| 14 | php5.6-mysql \
|
---|
| 15 | php5.6-xml && \
|
---|
| 16 | apt-get clean -y
|
---|
| 17 |
|
---|
| 18 | COPY entrypoint.sh init.sql php.ini.patch /
|
---|
| 19 |
|
---|
| 20 | ENTRYPOINT ["/entrypoint.sh"]
|
---|
| 21 | CMD ["mava"]
|
---|
Note:
See
TracBrowser
for help on using the repository browser.