Files
Kubernetes-deploy/App/docker/php/Dockerfile
Vassiliy Yegorov 6a08e8706c fix M1 chip
2021-05-20 15:21:21 +07:00

21 lines
523 B
Docker

FROM php:7.4-apache-buster
MAINTAINER vasyakrg <vasyakrg@gmail.com>
RUN apt-get update && apt-get install -y --no-install-recommends \
apt-transport-https \
curl \
wget \
git \
libpq-dev \
&& docker-php-ext-install pdo_mysql \
&& apt-get update \
&& rm -rf /var/lib/apt/lists/*
RUN rm /etc/apache2/sites-enabled/*
COPY myapp.conf /etc/apache2/sites-available/myapp.conf
RUN a2enmod rewrite headers && a2ensite myapp
COPY myapp/ /var/www/
WORKDIR /var/www