Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM php:5.6-apache
ADD ova3 /var/www/html/
RUN mkdir /var/www/html/tmp
RUN chmod 777 /var/www/html/tmp
RUN a2enmod rewrite
RUN a2enmod headers
COPY php.ini /usr/local/etc/php/
RUN docker-php-ext-install mysql mysqli pdo pdo_mysql
RUN apt-get update && apt-get install -y mysql-client
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Flask==2.0.3
requests==2.23.0
wget==3.2.0