Skip to content

Instantly share code, notes, and snippets.

@Michael-Brooks
Created March 17, 2022 16:51
Show Gist options
  • Save Michael-Brooks/3b1f8800f8c4c180e73a87f920b5d0b7 to your computer and use it in GitHub Desktop.
Save Michael-Brooks/3b1f8800f8c4c180e73a87f920b5d0b7 to your computer and use it in GitHub Desktop.
Dockerfile specifically for setting up PHP and Apache with Azure applications
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