source: docker/virtualairlines.hu/context/Dockerfile@ 1020:9a5c3cd7ef34

python3
Last change on this file since 1020:9a5c3cd7ef34 was 1020:9a5c3cd7ef34, checked in by István Váradi <ivaradi@…>, 4 years ago

Updated the website image to Focal

File size: 609 bytes
Line 
1FROM ubuntu:focal-20200423
2
3RUN apt-get update -y && \
4 /usr/bin/env DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
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 --no-install-recommends \
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
18COPY entrypoint.sh init.sql php.ini.patch /
19COPY mysql.cnf /etc/mysql/conf.d
20
21ENTRYPOINT ["/entrypoint.sh"]
22CMD ["mava"]
Note: See TracBrowser for help on using the repository browser.