Created
March 17, 2022 16:51
-
-
Save Michael-Brooks/3b1f8800f8c4c180e73a87f920b5d0b7 to your computer and use it in GitHub Desktop.
Dockerfile specifically for setting up PHP and Apache with Azure applications
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM php:7.4-apache | |
COPY . /var/www/html | |
WORKDIR /var/www/html | |
RUN docker-php-ext-install mysqli pdo pdo_mysql | |
EXPOSE 80 443 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment